Class PacketByteBufs
java.lang.Object
net.fabricmc.fabric.api.networking.v1.PacketByteBufs
Helper methods for working with and creating
PacketByteBuf
s.-
Method Summary
Modifier and TypeMethodDescriptionstatic PacketByteBuf
Wraps the newly created buf frombuf.copy
in a packet byte buf.static PacketByteBuf
Wraps the newly created buf frombuf.copy
in a packet byte buf.static PacketByteBuf
create()
Returns a new heap memory-backed instance of packet byte buf.static PacketByteBuf
Wraps the newly created buf frombuf.duplicate
in a packet byte buf.static PacketByteBuf
empty()
Returns an empty instance of packet byte buf.static PacketByteBuf
Wraps the newly created buf frombuf.readBytes
in a packet byte buf.static PacketByteBuf
readRetainedSlice
(ByteBuf buf, int length) Wraps the newly created buf frombuf.readRetainedSlice
in a packet byte buf.static PacketByteBuf
Wraps the newly created buf frombuf.readSlice
in a packet byte buf.static PacketByteBuf
retainedDuplicate
(ByteBuf buf) Wraps the newly created buf frombuf.retainedDuplicate
in a packet byte buf.static PacketByteBuf
retainedSlice
(ByteBuf buf) Wraps the newly created buf frombuf.retainedSlice
in a packet byte buf.static PacketByteBuf
retainedSlice
(ByteBuf buf, int index, int length) Wraps the newly created buf frombuf.retainedSlice
in a packet byte buf.static PacketByteBuf
Wraps the newly created buf frombuf.slice
in a packet byte buf.static PacketByteBuf
Wraps the newly created buf frombuf.slice
in a packet byte buf.
-
Method Details
-
empty
Returns an empty instance of packet byte buf.- Returns:
- an empty buf
-
create
Returns a new heap memory-backed instance of packet byte buf.- Returns:
- a new buf
-
readBytes
Wraps the newly created buf frombuf.readBytes
in a packet byte buf.- Parameters:
buf
- the original buflength
- the number of bytes to transfer- Returns:
- the transferred bytes
- See Also:
-
readSlice
Wraps the newly created buf frombuf.readSlice
in a packet byte buf.- Parameters:
buf
- the original buflength
- the size of the new slice- Returns:
- the newly created slice
- See Also:
-
readRetainedSlice
Wraps the newly created buf frombuf.readRetainedSlice
in a packet byte buf.- Parameters:
buf
- the original buflength
- the size of the new slice- Returns:
- the newly created slice
- See Also:
-
copy
Wraps the newly created buf frombuf.copy
in a packet byte buf.- Parameters:
buf
- the original buf- Returns:
- a copy of the buf
- See Also:
-
copy
Wraps the newly created buf frombuf.copy
in a packet byte buf.- Parameters:
buf
- the original bufindex
- the starting indexlength
- the size of the copy- Returns:
- a copy of the buf
- See Also:
-
slice
Wraps the newly created buf frombuf.slice
in a packet byte buf.- Parameters:
buf
- the original buf- Returns:
- a slice of the buf
- See Also:
-
retainedSlice
Wraps the newly created buf frombuf.retainedSlice
in a packet byte buf.- Parameters:
buf
- the original buf- Returns:
- a slice of the buf
- See Also:
-
slice
Wraps the newly created buf frombuf.slice
in a packet byte buf.- Parameters:
buf
- the original bufindex
- the starting indexlength
- the size of the copy- Returns:
- a slice of the buf
- See Also:
-
retainedSlice
Wraps the newly created buf frombuf.retainedSlice
in a packet byte buf.- Parameters:
buf
- the original bufindex
- the starting indexlength
- the size of the copy- Returns:
- a slice of the buf
- See Also:
-
duplicate
Wraps the newly created buf frombuf.duplicate
in a packet byte buf.- Parameters:
buf
- the original buf- Returns:
- a duplicate of the buf
- See Also:
-
retainedDuplicate
Wraps the newly created buf frombuf.retainedDuplicate
in a packet byte buf.- Parameters:
buf
- the original buf- Returns:
- a duplicate of the buf
- See Also:
-