All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flash3388.flashlib.net.messaging.OutMessage Maven / Gradle / Ivy

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