A C D G I O P S T

A

activate(String) - Method in interface org.gridforum.gridrpc.GrpcClient
Initialize GrpcClient with a name of configuration file.
activate(Properties) - Method in interface org.gridforum.gridrpc.GrpcClient
Initialize GrpcClient with Properties object which contains information for server.

C

call() - Method in class org.gridforum.gridrpc.GrpcFunctionHandle
Calls a RemoteFunction without any arguments.
call(Object...) - Method in class org.gridforum.gridrpc.GrpcFunctionHandle
Calls a RemoteFunction with a specified argument.
call(Properties) - Method in class org.gridforum.gridrpc.GrpcFunctionHandle
Calls a RemoteFunction with attributes and no arguments.
call(Properties, Object...) - Method in class org.gridforum.gridrpc.GrpcFunctionHandle
Calls a RemoteFunction with attributes and a specified argument.
callWith(Properties, List) - Method in class org.gridforum.gridrpc.GrpcFunctionHandle
Calls a RemoteFunction with specified arguments.
cancel() - Method in class org.gridforum.gridrpc.GrpcFunctionHandle
Cancels a current session.
cancel() - Method in class org.gridforum.gridrpc.GrpcObjectHandle
Cancels a current session.

D

deactivate() - Method in interface org.gridforum.gridrpc.GrpcClient
Finalize GrpcClient.
dispose() - Method in class org.gridforum.gridrpc.GrpcFunctionHandle
Disposes this handle.
This method must be called when you don't need this handle any more.
dispose() - Method in class org.gridforum.gridrpc.GrpcObjectHandle
Dispose this handle.
This method must be called when you don't need this handle any more.

G

getBackTime() - Method in interface org.gridforum.gridrpc.GrpcExecInfo
Gets the time to transfer data of results.
getClient(String) - Static method in class org.gridforum.gridrpc.GrpcClientFactory
Create object which implements GrpcClient interface.
getExecTime() - Method in interface org.gridforum.gridrpc.GrpcExecInfo
Gets the time to execute RemoteFunction/RemoteMethod.
getForeTime() - Method in interface org.gridforum.gridrpc.GrpcExecInfo
Gets the time to transfer data of arguments.
getFunctionHandle(String, Properties) - Method in interface org.gridforum.gridrpc.GrpcClient
Create GrpcFunctionHandle for the specified function on the server.
getFunctionHandle(String) - Method in interface org.gridforum.gridrpc.GrpcClient
Create GrpcFunctionHandle without server information.
Default server(it depends on implementation) will be used.
getFunctionHandles(String, Properties, int) - Method in interface org.gridforum.gridrpc.GrpcClient
Create specified number of GrpcFunctionHandle for the specified function on the server.
getFunctionHandles(String, int) - Method in interface org.gridforum.gridrpc.GrpcClient
Create GrpcFunctionHandle without server information.
Default server(it depends on implementation) will be used.
getInvokeTime() - Method in interface org.gridforum.gridrpc.GrpcExecInfo
Gets the time to invoke a FunctionHandle/ObjectHandle.
getLookupTime() - Method in interface org.gridforum.gridrpc.GrpcExecInfo
Gets the time to search information of RemoteFunction/RemoteMethod.
getObjectHandle(String, Properties) - Method in interface org.gridforum.gridrpc.GrpcClient
Create GrpcObjectHandle for the specified object on the server.
getObjectHandle(String) - Method in interface org.gridforum.gridrpc.GrpcClient
Create GrpcObjectHandle without server information.
Default server(it depends on implementation) will be used.
getObjectHandles(String, Properties, int) - Method in interface org.gridforum.gridrpc.GrpcClient
Create specified number of GrpcObjectHandle for the specified function on the server.
getObjectHandles(String, int) - Method in interface org.gridforum.gridrpc.GrpcClient
Create GrpcObjectHandle without server information.
Default server(it depends on implementation) will be used.
GrpcClient - Interface in org.gridforum.gridrpc
This interface provides functions to initialize, finalize and get/set methods for GridRPC.
GrpcClientFactory - Class in org.gridforum.gridrpc
Create object which implements GrpcClient interface.
GrpcClientFactory() - Constructor for class org.gridforum.gridrpc.GrpcClientFactory
 
GrpcException - Exception in org.gridforum.gridrpc
Keeps information about an occurred error in Grid RPC libraries.
If error occurred in Grid RPC libraries, an object of this class must be thrown.
This class keeps string which describe about an error, and an Exception object which was catched in Grid RPC libraries.
GrpcException() - Constructor for exception org.gridforum.gridrpc.GrpcException
Creates GrpcException
GrpcException(String) - Constructor for exception org.gridforum.gridrpc.GrpcException
Creates GrpcException with string
GrpcException(Exception) - Constructor for exception org.gridforum.gridrpc.GrpcException
Creates GrpcException with Exception
GrpcExecInfo - Interface in org.gridforum.gridrpc
Provides information about time to call RemoteFunctions or RemoteMethods.
This class provides following informations.
the time to search information of RemoteFunction/RemoteMethod.
GrpcFunctionHandle - Class in org.gridforum.gridrpc
Provides interfaces to control RemoteFunctions.
This class keeps information about a server and a RemoteFunction, can call a RemoteFunction with arguments and receive a result of it.
If an error occurred in this class, then it will be notified by throwing GrpcException.
GrpcFunctionHandle() - Constructor for class org.gridforum.gridrpc.GrpcFunctionHandle
 
GrpcObjectHandle - Class in org.gridforum.gridrpc
Provides interfaces to control RemoteObjects.
This class keeps information about a server and a RemoteObject, can call a RemoteObject with arguments and receive a result of it.
RemoteObjects have several methods, so you have to specify which method to call.
If an error occurred in this class, then it will be notified by throwing GrpcException.
GrpcObjectHandle() - Constructor for class org.gridforum.gridrpc.GrpcObjectHandle
 

I

innerException - Variable in exception org.gridforum.gridrpc.GrpcException
an Exception object which was catched in Grid RPC libraries.
invoke(String) - Method in class org.gridforum.gridrpc.GrpcObjectHandle
Calls a RemoteMethod without any arguments.
invoke(String, Object...) - Method in class org.gridforum.gridrpc.GrpcObjectHandle
Calls a RemoteMethod with a specified argument.
invoke(String, Properties) - Method in class org.gridforum.gridrpc.GrpcObjectHandle
Calls a RemoteMethod with attributes and no arguments.
invoke(String, Properties, Object...) - Method in class org.gridforum.gridrpc.GrpcObjectHandle
Calls a RemoteMethod with attributes and a specified argument.
invokeWith(String, Properties, List) - Method in class org.gridforum.gridrpc.GrpcObjectHandle
Calls a RemoteMethod with specified arguments.
You have to specify a name of method.

O

org.gridforum.gridrpc - package org.gridforum.gridrpc
 
os - Variable in exception org.gridforum.gridrpc.GrpcException
a PrintStream object to put a message about error.
You can change where to put information strings by setting this variable.

P

printStackTrace() - Method in exception org.gridforum.gridrpc.GrpcException
Prints information of stackTrace to PrintStream specified by GrpcException.os.

S

str - Variable in exception org.gridforum.gridrpc.GrpcException
a string which describe about an error.

T

toString() - Method in exception org.gridforum.gridrpc.GrpcException
Prints an information string which described about an error to PrintStream specified by GrpcException.os.

A C D G I O P S T