org.jboss.test.perf.interfaces
Interface Probe

All Superinterfaces:
EJBObject (src) , java.rmi.Remote

public interface Probe
extends EJBObject (src)

A trivial stateless session bean for testing round trip call throughput.


Method Summary
 java.lang.String echo(java.lang.String arg)
          Basic test that has both argument serialization and return value serialization.
 void noop()
          Basic test that has no arguments or return values to test the bare call invocation overhead without any data serialize.
 void ping(java.lang.String arg)
          Basic test that has argument serialization.
 
Methods inherited from interface javax.ejb.EJBObject (src)
getEJBHome, getHandle, getPrimaryKey, isIdentical, remove
 

Method Detail

noop

public void noop()
          throws java.rmi.RemoteException
Basic test that has no arguments or return values to test the bare call invocation overhead without any data serialize.

Throws:
java.rmi.RemoteException

ping

public void ping(java.lang.String arg)
          throws java.rmi.RemoteException
Basic test that has argument serialization.

Throws:
java.rmi.RemoteException

echo

public java.lang.String echo(java.lang.String arg)
                      throws java.rmi.RemoteException
Basic test that has both argument serialization and return value serialization.

Throws:
java.rmi.RemoteException