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 ;7 Object receive(long timeout) throws Exception ;8 }9