Hey Philip,
On Wed, Jul 18, 2012 at 6:19 PM, Philip Zeyliger <[email protected]>wrote:
> Hi Christophe,
>
> We do this:
>
> private static <T> T createRpc(Class<T> klass, URL url, int
> timeoutMillis) throws IOException {
> HttpTransceiver transceiver = new HttpTransceiver(url);
> transceiver.setTimeout(timeoutMillis);
> SpecificRequestor requestor = new
> SpecificRequestor(klass, transceiver);
> T client = SpecificRequestor.getClient(klass, requestor);
> return client;
> }
>
Thanks for the reply!
Is there an equivalent with NettyTransceivers?
C.
Cheers,
>
> -- Philip
>
>
> On Mon, Jul 2, 2012 at 12:21 PM, Christophe Taton <[email protected]>wrote:
>
>> Hi,
>> Is there a way to set a deadline on an RPC?
>> I've been searching the list and in the code but I didn't find anything
>> so far.
>> Thanks!
>> C.
>>
>
>