KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > jms > common > datagram > control > ICommandSubGram


1 package com.ubermq.jms.common.datagram.control;
2
3 import com.ubermq.jms.common.datagram.IControlDatagram;
4 import java.nio.*;
5
6 /**
7  * The Cluster Peer command notifies the recipient what the
8  * sender's Cluster Identifier is.
9  */

10 public interface ICommandSubGram
11 {
12     public void incoming(ByteBuffer bb);
13     public void outgoing(ByteBuffer bb);
14 }
15
Popular Tags