FindProtocol Protocol Reference

Declared in FindProtocol.h

Overview

Declares the protocol of fetch operations.

+ findWithInstanceId:params:returningError: required method

Finds data from the remote server by synchronous communication. 同期通信によるデータ検索。

+ (NSArray *)findWithInstanceId:(NSString *)instanceId params:(NSDictionary *)params returningError:(NSError **)returningError

Parameters

instanceId

The reference ID of the finding target instance検索対象インスタンスのID

params

To control the output.リスト制御パラメータ。

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: required method

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:(NSDictionary *)params

Parameters

block

To execute after the process completes.処理完了後に実行されるブロック。

instanceId

The reference ID of the finding target instance検索対象インスタンスのID

params

To control the output.リスト制御パラメータ。

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