1 25 26 package org.objectweb.petals.jbi.transport; 27 28 import org.objectweb.petals.PetalsLifeCycle; 29 import org.objectweb.petals.jbi.messaging.MessageExchangeImpl; 30 31 51 public interface Transporter extends PetalsLifeCycle{ 52 53 public final String PROPERTY_NOPERSISTANCE="org.objectweb.petals.transport.nonpersistent"; 54 55 71 void send(MessageExchangeImpl exchange, String containerName, 72 long timeToLive) throws TransportException; 73 74 82 void startListening() throws TransportException; 83 } 84 | Popular Tags |