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

bt.protocol.EncodingContext Maven / Gradle / Ivy

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

import bt.net.Peer;

public class EncodingContext {

    private final Peer peer;

    public EncodingContext(Peer peer) {
        this.peer = peer;
    }

    public Peer getPeer() {
        return peer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy