![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.jrtps.transport.Transmitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrtps Show documentation
Show all versions of jrtps Show documentation
jRTPS - An implementation of RTPS protocol by OMG
package net.sf.jrtps.transport;
import java.io.IOException;
import net.sf.jrtps.message.Message;
/**
* Transmitter is used to deliver messages to destination.
*
* @author mcr70
* @see Receiver
* @see TransportProvider
*/
public interface Transmitter {
/**
* Sends a Message to destination.
* @param msg Message to send
* @return true, if an overflow occured.
*/
public boolean sendMessage(Message msg);
/**
* Close this Writer
* @throws IOException
*/
public void close() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy