
org.objectweb.celtix.transports.ServerTransportCallback Maven / Gradle / Ivy
The newest version!
package org.objectweb.celtix.transports;
import java.util.concurrent.Executor;
import org.objectweb.celtix.context.InputStreamMessageContext;
/**
* ServerTransportCallback
* @author dkulp
*
*/
public interface ServerTransportCallback {
/**
* Used to dispatch a message from the ServerTransport
* to an servant.
*
* @param ctx The MessageContext associated with the call.
*/
void dispatch(InputStreamMessageContext ctx, ServerTransport transport);
Executor getExecutor();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy