queryRecentCalls abstract method

Future<CompletionHandler> queryRecentCalls(
  1. String cursor,
  2. int count
)

Query recent call records with pagination support. Pass an empty string as the initial cursor. For subsequent requests, use the cursor returned in the previous response to fetch the next page. Results are updated asynchronously in state.recentCalls.

  • cursor : Pagination cursor, pass empty string for first query
  • count : Query count

Implementation

Future<CompletionHandler> queryRecentCalls(String cursor, int count);