1 7 8 package com.sun.corba.se.pept.protocol; 9 10 import com.sun.corba.se.pept.broker.Broker; 11 import com.sun.corba.se.pept.encoding.InputObject; 12 import com.sun.corba.se.pept.encoding.OutputObject; 13 import com.sun.corba.se.pept.transport.ContactInfo; 14 15 21 public interface ClientRequestDispatcher 22 { 23 39 public OutputObject beginRequest(Object self, 40 String methodName, 41 boolean isOneWay, 42 ContactInfo contactInfo); 43 44 65 public InputObject marshalingComplete(java.lang.Object self, 66 OutputObject outputObject) 67 throws 69 org.omg.CORBA.portable.ApplicationException , 70 org.omg.CORBA.portable.RemarshalException ; 71 72 82 public void endRequest(Broker broker, 83 java.lang.Object self, 84 InputObject inputObject); 85 } 86 87 | Popular Tags |