1 21 22 package com.rift.coad.daemon.messageservice; 24 25 import java.rmi.Remote ; 27 import java.rmi.RemoteException ; 28 29 35 public interface Producer extends Remote { 36 45 public TextMessage createTextMessage(int type) throws RemoteException , 46 MessageServiceException; 47 48 49 58 public RPCMessage createRPCMessage(int type) throws RemoteException , 59 MessageServiceException; 60 61 62 70 public void submit(Message newMessage) throws RemoteException , 71 MessageServiceException; 72 } 73 | Popular Tags |