Merge pull request #344 from alexstaeding/feature/pluginMessageEvent-dataAsInputStream

Add dataAsInputStream() to PluginMessageEvent
This commit is contained in:
Andrew Steinborn
2020-08-03 11:37:02 -04:00
committed by GitHub

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