package fr.pandacube.lib.net; import com.google.common.annotations.Beta; @Beta @FunctionalInterface public interface PPacketListener

{ /** * Called when we receive a packet (except responses) * @param connection the connection from where the packet comes * @param packet the received packet */ void onPacketReceive(PSocket connection, P packet); }