com.flash3388.flashlib.net.messaging.OutMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flashlib.net.core Show documentation
Show all versions of flashlib.net.core Show documentation
Robotics development framework (flashlib.net.core)
The newest version!
package com.flash3388.flashlib.net.messaging;
import java.io.DataOutput;
import java.io.IOException;
/**
* Writable portion of a message.
*
* @since FlashLib 3.2.0
*/
public interface OutMessage {
/**
* Writes the content of the message into an output, allowing it to be sent.
*
* @param output output
* @throws IOException if an I/O error occurs
*/
void writeInto(DataOutput output) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy