ECHOBlogQuery Class Reference
Inherits from | NSObject |
---|---|
Conforms to | FindProtocol |
Declared in | ECHOBlogQuery.h ECHOBlogQuery.m |
+ findWithInstanceId:params:returningError:
Finds data from the remote server by synchronous communication. 同期通信によるデータ検索。
+ (NSArray *)findWithInstanceId:(NSString *)instanceId params:(NSMutableDictionary *)params returningError:(NSError **)returningError
Parameters
instanceId |
The reference ID of the finding target instance検索対象インスタンスのID |
---|---|
params |
|
returningError |
Pointer to a NSError that will be set when errors have occured.NSErrorへのポインタ(エラー発生時にのみセット)。 |
Discussion
Finds data from the remote server by synchronous communication. 同期通信によるデータ検索。
Declared In
FindProtocol.h
+ findInBackgroundWithBlock:instanceId:params:
Finds data from the remote server in a background thread. A block is done in the main (UI) thread after the finding. 非同期通信によるデータ検索。検索完了後に指定したをメインスレッドで実行します。
+ (void)findInBackgroundWithBlock:(ECHOFindResultBlock)block instanceId:(NSString *)instanceId params:(NSMutableDictionary *)params
Parameters
block |
To execute after the process completes.処理完了後に実行されるブロック。 |
---|---|
instanceId |
The reference ID of the finding target instance検索対象インスタンスのID |
params |
Discussion
Finds data from the remote server in a background thread. A block is done in the main (UI) thread after the finding. 非同期通信によるデータ検索。検索完了後に指定したをメインスレッドで実行します。
Declared In
FindProtocol.h