Add dataAsInputStream() to PluginMessageEvent

This commit is contained in:
Alexander Staeding
2020-08-03 00:22:36 +02:00
parent fc51f1c203
commit c963343e27

View File

@@ -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);
}