hudson.remoting
Interface Callable<V,T extends java.lang.Throwable>

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
DelegatingCallable<V,T>

public interface Callable<V,T extends java.lang.Throwable>
extends java.io.Serializable

Represents computation to be done on a remote system.

Author:
Kohsuke Kawaguchi
See Also:
Channel

Method Summary
 V call()
          Performs computation and returns the result, or throws some exception.
 

Method Detail

call

V call()
       throws T extends java.lang.Throwable
Performs computation and returns the result, or throws some exception.

Throws:
T extends java.lang.Throwable


Copyright © 2013. All Rights Reserved.