KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > Transport


1 // $Id: Transport.java,v 1.1.1.1 2003/09/09 01:24:08 belaban Exp $
2

3 package org.jgroups;
4
5 public interface Transport {
6     void send(Message msg) throws Exception JavaDoc;
7     Object JavaDoc receive(long timeout) throws Exception JavaDoc;
8 }
9
Popular Tags