net.minestom.server.crypto.ChatSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.crypto;
import net.minestom.server.network.NetworkBuffer;
import net.minestom.server.network.NetworkBufferTemplate;
import org.jetbrains.annotations.NotNull;
import java.util.UUID;
import static net.minestom.server.network.NetworkBuffer.UUID;
public record ChatSession(@NotNull UUID sessionId, @NotNull PlayerPublicKey publicKey) {
public static final NetworkBuffer.Type SERIALIZER = NetworkBufferTemplate.template(
UUID, ChatSession::sessionId,
PlayerPublicKey.SERIALIZER, ChatSession::publicKey,
ChatSession::new
);
}