lookupFuture method

AbstractRPCCompleter? lookupFuture(
  1. FutureUniqueIdentifier uniqueIdentifier
)

Implementation

AbstractRPCCompleter? lookupFuture(FutureUniqueIdentifier uniqueIdentifier)
{
    AbstractRPCCompleter? future = null;
    if(this.futures.containsKey(uniqueIdentifier))
    {
        future = this.futures[uniqueIdentifier];
    }
    return future;
}