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