1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/***************************************
* *
* JBoss: The OpenSource J2EE WebOS *
* *
* Distributable under LGPL license. *
* See terms of license at gnu.org. *
* *
***************************************/
package org.jboss.test.remoting.performance.spring.rmi;
import EDU.oswego.cs.dl.util.concurrent.Latch;
import org.jboss.remoting.callback.InvokerCallbackHandler;
import org.jboss.test.remoting.performance.synchronous.PerformanceCallbackKeeper;
/**
* @author <a href="mailto:tom@jboss.org">Tom Elrod</a>
*/
public interface SpringRMICallbackServer extends PerformanceCallbackKeeper, InvokerCallbackHandler
{
public void finishedProcessing(Object obj);
void setClientSessionId(String clientSessionId);
void setServerDoneLock(Latch serverDoneLock);
}
|