Package org.freedesktop.dbus.spi
Interface IMessageWriter
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
OutputStreamMessageWriter
public interface IMessageWriter extends Closeable
Interface that lets you write a message out.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisClosed()voidwriteMessage(Message m)Write a message out to the bus.
-
-
-
Method Detail
-
writeMessage
void writeMessage(Message m) throws IOException
Write a message out to the bus.- Parameters:
m- The message to write- Throws:
IOException- If an IO error occurs.
-
isClosed
boolean isClosed()
-
-