1 26 27 28 package org.objectweb.jonathan.apis.protocols; 29 30 import org.objectweb.jonathan.apis.kernel.JonathanException; 31 import org.objectweb.jonathan.apis.presentation.UnMarshaller; 32 33 37 public interface RequestSession { 38 39 53 void send(UnMarshaller message,ReplySession session) 54 throws JonathanException; 55 56 60 Object getTarget(); 61 } 62 63 64 | Popular Tags |