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

bt.protocol.handler.ChokeHandler Maven / Gradle / Ivy

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

import bt.protocol.Choke;
import bt.protocol.DecodingContext;
import bt.protocol.EncodingContext;

import java.nio.ByteBuffer;

import static bt.protocol.Protocols.verifyPayloadHasLength;

public final class ChokeHandler extends UniqueMessageHandler {

    public ChokeHandler() {
        super(Choke.class);
    }

    @Override
    public int doDecode(DecodingContext context, ByteBuffer buffer) {
        verifyPayloadHasLength(Choke.class, 0, buffer.remaining());
        context.setMessage(Choke.instance());
        return 0;
    }

    @Override
    public boolean doEncode(EncodingContext context, Choke message, ByteBuffer buffer) {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy