13
0
geforkt von Mirrors/Velocity

Add dataAsInputStream() to PluginMessageEvent

Dieser Commit ist enthalten in:
Alexander Staeding 2020-08-03 00:22:36 +02:00
Ursprung fc51f1c203
Commit c963343e27
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B981B5586F405AD1

Datei anzeigen

@ -9,6 +9,7 @@ import com.velocitypowered.api.proxy.ServerConnection;
import com.velocitypowered.api.proxy.messages.ChannelIdentifier;
import com.velocitypowered.api.proxy.messages.ChannelMessageSink;
import com.velocitypowered.api.proxy.messages.ChannelMessageSource;
import java.io.ByteArrayInputStream;
import java.util.Arrays;
/**
@ -66,6 +67,10 @@ public final class PluginMessageEvent implements ResultedEvent<PluginMessageEven
return Arrays.copyOf(data, data.length);
}
public ByteArrayInputStream dataAsInputStream() {
return new ByteArrayInputStream(data);
}
public ByteArrayDataInput dataAsDataStream() {
return ByteStreams.newDataInput(data);
}