Uses of Class
com.googlecode.mobilityrpc.protocol.pojo.ExecutionMode

Packages that use ExecutionMode
com.googlecode.mobilityrpc.protocol.pojo [private api] Java object (POJO) representations of protocol messages. 
com.googlecode.mobilityrpc.session [public api] Contains MobilitySession, the gateway through which the application can send objects to remote machines. 
com.googlecode.mobilityrpc.session.impl [private api] Contains MobilitySession implementation classes. 
 

Uses of ExecutionMode in com.googlecode.mobilityrpc.protocol.pojo
 

Methods in com.googlecode.mobilityrpc.protocol.pojo that return ExecutionMode
 ExecutionMode ExecutionRequest.getExecutionMode()
           
static ExecutionMode ExecutionMode.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ExecutionMode[] ExecutionMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in com.googlecode.mobilityrpc.protocol.pojo with parameters of type ExecutionMode
ExecutionRequest(byte[] serializedExecutableObject, SerializationFormat serializationFormat, ExecutionMode executionMode, RequestIdentifier requestIdentifier)
           
 

Uses of ExecutionMode in com.googlecode.mobilityrpc.session
 

Methods in com.googlecode.mobilityrpc.session with parameters of type ExecutionMode
<T> T
MobilitySession.execute(ConnectionId connectionId, ExecutionMode executionMode, Callable<T> callable)
          Transfers the given Callable object, and any objects it references, to the given remote machine, and executes it (calls the Callable.call() method) on the remote machine.
<T> T
MobilitySession.execute(ConnectionId connectionId, ExecutionMode executionMode, long executionResponseTimeoutMs, Callable<T> callable)
          Transfers the given Callable object, and any objects it references, to the given remote machine, and executes it (calls the Callable.call() method) on the remote machine.
 void MobilitySession.execute(ConnectionId connectionId, ExecutionMode executionMode, long executionResponseTimeoutMs, Runnable runnable)
          Transfers the given Runnable object, and any objects it references, to the given remote machine, and executes it (calls the Runnable.run() method) on the remote machine.
 void MobilitySession.execute(ConnectionId connectionId, ExecutionMode executionMode, Runnable runnable)
          Transfers the given Runnable object, and any objects it references, to the given remote machine, and executes it (calls the Runnable.run() method) on the remote machine.
 

Uses of ExecutionMode in com.googlecode.mobilityrpc.session.impl
 

Methods in com.googlecode.mobilityrpc.session.impl with parameters of type ExecutionMode
<T> T
MobilitySessionImpl.execute(ConnectionId connectionId, ExecutionMode executionMode, Callable<T> callable)
           
<T> T
MobilitySessionImpl.execute(ConnectionId connectionId, ExecutionMode executionMode, long executionResponseTimeoutMs, Callable<T> callable)
           
 void MobilitySessionImpl.execute(ConnectionId connectionId, ExecutionMode executionMode, long executionResponseTimeoutMs, Runnable runnable)
           
 void MobilitySessionImpl.execute(ConnectionId connectionId, ExecutionMode executionMode, Runnable runnable)
           
 



Copyright © 2016. All rights reserved.