sensitivity.io for iOS & macOS  1.1.4
ThreatInfosFuture.h
1 //
2 // ThreatInfosFuture.h
3 //
4 // Created by Andreea ERDELYI <andreea.erdelyi@cososys.com>
5 //
6 // Copyright (C) 2017 CoSoSys Ltd team@sensitivity.io
7 // CoSoSys Ltd. All rights reserved.
8 // Please see the COPYING for more details.
9 //
10 
11 #import <sensitivityio/objc_license/Future.h>
12 
13 @class ThreatInfo;
14 
18 @interface ThreatInfosFuture : NSObject <Future>
19 
20 - (instancetype _Null_unspecified) init NS_UNAVAILABLE;
21 + (instancetype _Null_unspecified) new NS_UNAVAILABLE;
22 - (instancetype _Null_unspecified) copy NS_UNAVAILABLE;
23 
31 - (BOOL) isResultReady:(BOOL* _Nonnull)resultReady withError:(NSError * _Nullable * _Nullable)error;
40 - (NSArray<ThreatInfo *> * _Nullable) resultWithError:(NSError * _Nullable * _Nullable)error;
41 
42 @end
Definition: ThreatInfo.h:20
Definition: ThreatInfosFuture.h:18