Example usage for io.netty.buffer ByteBufInputStream readLong

List of usage examples for io.netty.buffer ByteBufInputStream readLong

Introduction

In this page you can find the example usage for io.netty.buffer ByteBufInputStream readLong.

Prototype

@Override
    public long readLong() throws IOException 

Source Link

Usage

From source file:de.sanandrew.mods.claysoldiers.network.packet.PacketSoldierRender.java

License:Creative Commons License

@Override
public void process(ByteBufInputStream stream, ByteBuf rawData, INetHandler handler) throws IOException {
    ClaySoldiersMod.proxy.applySoldierRenderFlags(stream.readInt(), stream.readLong(), stream.readLong(),
            stream.readLong(), stream.readLong());
}