// // AHF 10/31/2002 // // Poker server communication // Abstract class for communication back to the client // // "implements Serializable" allows the object to be sent // over the sockets. // // The service() method is used by the client to respond to the // message // // The PokerClient object maintains the state of the the client side. // import java.util.*; import java.lang.*; import java.io.*; abstract class ReturnMessage implements Serializable{ abstract void service(PokerClient pk); // Service this object };