KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > kernel > IDatagramEndpoint


1 package com.ubermq.kernel;
2
3 /**
4  * An endpoint for datagram delivery.
5  */

6 public interface IDatagramEndpoint
7 {
8     /**
9      * Delivers a datagram to this object.
10      */

11     public void deliver(IDatagram d);
12 }
13
Popular Tags