Package private way of accessing / creating the Deferred of this RPC.
()
| 595 | |
| 596 | /** Package private way of accessing / creating the Deferred of this RPC. */ |
| 597 | final Deferred<Object> getDeferred() { |
| 598 | if (deferred == null) { |
| 599 | deferred = new Deferred<Object>(); |
| 600 | } |
| 601 | return deferred; |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * A timeout task that is schedule as soon as the RPC is about to go out on |
no outgoing calls