public interface FlowSegmentDataApi
| Modifier and Type | Method and Description |
|---|---|
Single<FlowSegmentDataResponse> |
findFlowSegmentData(FlowSegmentDataQuery query)
Performs reactive search action based on provided
FlowSegmentDataQuery object and returns the result to Observers subscribed to returned Observable. |
void |
findFlowSegmentData(FlowSegmentDataQuery query,
FlowSegmentDataResultListener listener)
Performs search action based on provided
FlowSegmentDataQuery object and returns the result with usage of FlowSegmentDataResultListener implementation. |
Single<FlowSegmentDataResponse> findFlowSegmentData(FlowSegmentDataQuery query)
FlowSegmentDataQuery object and returns the result to Observers subscribed to returned Observable.query - Object which contains data necessary to execute search actionFlowSegmentDataResponse's Observable object.void findFlowSegmentData(FlowSegmentDataQuery query, FlowSegmentDataResultListener listener)
FlowSegmentDataQuery object and returns the result with usage of FlowSegmentDataResultListener implementation.query - The object which contains data necessary to execute search action.listener - The listener which informs the subscriber when search result is available. It contains FlowSegmentDataResponse object.