Uses of Class
org.gridforum.gridrpc.GrpcException

Uses of GrpcException in org.gridforum.gridrpc
 

Methods in org.gridforum.gridrpc that throw GrpcException
 void GrpcClient.activate(java.util.Properties prop)
          Initialize GrpcClient with Properties object which contains information for server.
 void GrpcClient.activate(java.lang.String configFilename)
          Initialize GrpcClient with a name of configuration file.
 GrpcExecInfo GrpcFunctionHandle.call()
          Calls a RemoteFunction without any arguments.
 GrpcExecInfo GrpcFunctionHandle.call(java.lang.Object... args)
          Calls a RemoteFunction with a specified argument.
 GrpcExecInfo GrpcFunctionHandle.call(java.util.Properties sessionAttr)
          Calls a RemoteFunction with attributes and no arguments.
 GrpcExecInfo GrpcFunctionHandle.call(java.util.Properties sessionAttr, java.lang.Object... args)
          Calls a RemoteFunction with attributes and a specified argument.
abstract  GrpcExecInfo GrpcFunctionHandle.callWith(java.util.Properties sessionAttr, java.util.List args)
          Calls a RemoteFunction with specified arguments.
abstract  void GrpcObjectHandle.cancel()
          Cancels a current session.
abstract  void GrpcFunctionHandle.cancel()
          Cancels a current session.
 void GrpcClient.deactivate()
          Finalize GrpcClient.
abstract  void GrpcObjectHandle.dispose()
          Dispose this handle.
This method must be called when you don't need this handle any more.
abstract  void GrpcFunctionHandle.dispose()
          Disposes this handle.
This method must be called when you don't need this handle any more.
static GrpcClient GrpcClientFactory.getClient(java.lang.String className)
          Create object which implements GrpcClient interface.
 GrpcFunctionHandle GrpcClient.getFunctionHandle(java.lang.String functionName)
          Create GrpcFunctionHandle without server information.
Default server(it depends on implementation) will be used.
 GrpcFunctionHandle GrpcClient.getFunctionHandle(java.lang.String functionName, java.util.Properties prop)
          Create GrpcFunctionHandle for the specified function on the server.
 GrpcFunctionHandle[] GrpcClient.getFunctionHandles(java.lang.String functionName, int nHandles)
          Create GrpcFunctionHandle without server information.
Default server(it depends on implementation) will be used.
 GrpcFunctionHandle[] GrpcClient.getFunctionHandles(java.lang.String functionName, java.util.Properties prop, int nHandles)
          Create specified number of GrpcFunctionHandle for the specified function on the server.
 GrpcObjectHandle GrpcClient.getObjectHandle(java.lang.String objectName)
          Create GrpcObjectHandle without server information.
Default server(it depends on implementation) will be used.
 GrpcObjectHandle GrpcClient.getObjectHandle(java.lang.String objectName, java.util.Properties prop)
          Create GrpcObjectHandle for the specified object on the server.
 GrpcObjectHandle[] GrpcClient.getObjectHandles(java.lang.String objectName, int nHandles)
          Create GrpcObjectHandle without server information.
Default server(it depends on implementation) will be used.
 GrpcObjectHandle[] GrpcClient.getObjectHandles(java.lang.String objectName, java.util.Properties prop, int nHandles)
          Create specified number of GrpcObjectHandle for the specified function on the server.
 GrpcExecInfo GrpcObjectHandle.invoke(java.lang.String methodName)
          Calls a RemoteMethod without any arguments.
 GrpcExecInfo GrpcObjectHandle.invoke(java.lang.String methodName, java.lang.Object... args)
          Calls a RemoteMethod with a specified argument.
 GrpcExecInfo GrpcObjectHandle.invoke(java.lang.String methodName, java.util.Properties sessionAttr)
          Calls a RemoteMethod with attributes and no arguments.
 GrpcExecInfo GrpcObjectHandle.invoke(java.lang.String methodName, java.util.Properties sessionAttr, java.lang.Object... args)
          Calls a RemoteMethod with attributes and a specified argument.
abstract  GrpcExecInfo GrpcObjectHandle.invokeWith(java.lang.String methodName, java.util.Properties sessionAttr, java.util.List args)
          Calls a RemoteMethod with specified arguments.
You have to specify a name of method.