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

bt.protocol.extended.ExtendedMessage Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt.protocol.extended;

import bt.protocol.Message;

/**
 * Base class for all extended messages.
 * See BEP-10: Extension Protocol for more details.
 *
 * @since 1.0
 */
public class ExtendedMessage implements Message {

    @Override
    public Integer getMessageId() {
        return ExtendedProtocol.EXTENDED_MESSAGE_ID;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy