| javax.rmi.CORBA.Stub org.jboss.proxy.ejb.DynamicIIOPStub
DynamicIIOPStub | abstract public class DynamicIIOPStub extends javax.rmi.CORBA.Stub (Code) | | Dynamically generated IIOP stub classes extend this abstract superclass,
which extends javax.rmi.CORBA.Stub .
A DynamicIIOPStub is a local proxy of a remote object. It has
methods (invoke() , invokeBoolean() ,
invokeByte() , and so on) that send an IIOP request to the
server that implements the remote object, receive the reply from the
server, and return the results to the caller. All of these methods take
the IDL name of the operation, a StubStrategy instance to
be used for marshalling parameters and unmarshalling the result, plus an
array of operation parameters.
author: Francisco Reverbel version: $Revision: 60892 $ |
Method Summary | |
public Object | invoke(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns an Object result to the caller. | public boolean | invokeBoolean(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns a boolean result to the caller. | public byte | invokeByte(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns a byte result to the caller. | public char | invokeChar(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns a char result to the caller. | public double | invokeDouble(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns a double result to the caller. | public float | invokeFloat(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns a float result to the caller. | public int | invokeInt(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns an int result to the caller. | public long | invokeLong(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns a long result to the caller. | public short | invokeShort(String operationName, StubStrategy stubStrategy, Object[] params) Sends a request message to the server, receives the reply from the
server, and returns a short result to the caller. |
serialVersionUID | final static long serialVersionUID(Code) | | since: 4.2.0 |
DynamicIIOPStub | public DynamicIIOPStub()(Code) | | Constructs a DynamicIIOPStub .
|
invoke | public Object invoke(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns an Object result to the caller.
|
invokeBoolean | public boolean invokeBoolean(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns a boolean result to the caller.
|
invokeByte | public byte invokeByte(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns a byte result to the caller.
|
invokeChar | public char invokeChar(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns a char result to the caller.
|
invokeDouble | public double invokeDouble(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns a double result to the caller.
|
invokeFloat | public float invokeFloat(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns a float result to the caller.
|
invokeInt | public int invokeInt(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns an int result to the caller.
|
invokeLong | public long invokeLong(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns a long result to the caller.
|
invokeShort | public short invokeShort(String operationName, StubStrategy stubStrategy, Object[] params) throws Throwable(Code) | | Sends a request message to the server, receives the reply from the
server, and returns a short result to the caller.
|
|
|