A B C D E F G H I L M N O P R S T U W 
All Classes All Packages

A

accept(AsynchronousSocketChannel) - Method in interface io.github.joealisson.mmocore.ConnectionFilter
This method must decide if a Connection can be accepted or not.
addBufferPool(int, int) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Add a new ByteBuffer grouping pool
addBufferPool(int, int) - Method in class io.github.joealisson.mmocore.Connector
Add a new ByteBuffer grouping pool
addBufferPool(int, BufferPool) - Method in class io.github.joealisson.mmocore.ResourcePool
 
arrayBacked(ResourcePool) - Static method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
ArrayPacketBuffer - Class in io.github.joealisson.mmocore.internal
 
ArrayPacketBuffer(int, ResourcePool) - Constructor for class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
available() - Method in class io.github.joealisson.mmocore.ReadablePacket
 

B

Buffer - Interface in io.github.joealisson.mmocore
 
BufferPool - Class in io.github.joealisson.mmocore.internal
 
BufferPool(int, int) - Constructor for class io.github.joealisson.mmocore.internal.BufferPool
 
bufferPoolSize() - Method in class io.github.joealisson.mmocore.ResourcePool
 
bufferSegmentSize(int) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Define the size of dynamic buffer's segment.
bufferSegmentSize(int) - Method in class io.github.joealisson.mmocore.Connector
Define the size of dynamic buffer's segment.
build() - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Builds a new ConnectionHandler based on the options configured.

C

canBeDropped(T) - Method in class io.github.joealisson.mmocore.WritablePacket
If this method returns true, the packet will be considered disposable.
capacity() - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
client - Variable in class io.github.joealisson.mmocore.ReadablePacket
 
Client<T extends Connection<?>> - Class in io.github.joealisson.mmocore
 
Client(T) - Constructor for class io.github.joealisson.mmocore.Client
Construct a new Client
ClientFactory<T extends Client<Connection<T>>> - Interface in io.github.joealisson.mmocore
 
close() - Method in class io.github.joealisson.mmocore.Client
close the underlying Connection to the client.
close(WritablePacket<? extends Client<T>>) - Method in class io.github.joealisson.mmocore.Client
Sends the packet and close the underlying Connection to the client.
connect(String, int) - Method in class io.github.joealisson.mmocore.Connector
Connects to a host using the address and port.
connect(InetSocketAddress) - Method in class io.github.joealisson.mmocore.Connector
Connects to a host with socketAddress
Connection<T extends Client<Connection<T>>> - Class in io.github.joealisson.mmocore
 
ConnectionBuilder<T extends Client<Connection<T>>> - Class in io.github.joealisson.mmocore
Builds the ConnectionHandler responsible to manage all incoming connections.
ConnectionBuilder() - Constructor for class io.github.joealisson.mmocore.ConnectionBuilder
 
ConnectionFilter - Interface in io.github.joealisson.mmocore
The filter of incoming connections.
ConnectionHandler<T extends Client<Connection<T>>> - Class in io.github.joealisson.mmocore
 
Connector<T extends Client<Connection<T>>> - Class in io.github.joealisson.mmocore
 
Connector() - Constructor for class io.github.joealisson.mmocore.Connector
 
create(ClientFactory<T>, PacketHandler<T>, PacketExecutor<T>) - Static method in class io.github.joealisson.mmocore.Connector
Creates a Connector holding the minimum requirements to create a Client.
create(Connection<T>) - Method in interface io.github.joealisson.mmocore.ClientFactory
This method must create a Client using the connection parameter.
create(InetSocketAddress, ClientFactory<T>, PacketHandler<T>, PacketExecutor<T>) - Static method in class io.github.joealisson.mmocore.ConnectionBuilder
Creates a ConnectionBuilder holding the minimum requirements to create a ConnectionHandler.

D

decrypt(Buffer, int, int) - Method in class io.github.joealisson.mmocore.Client
Decrypt the data in-place
dropPacketThreshold() - Method in class io.github.joealisson.mmocore.Connection
 
dropPacketThreshold(int) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Define the threshold to allow the client to drop disposable packets.
dropPacketThreshold(int) - Method in class io.github.joealisson.mmocore.Connector
Define the threshold to allow the client to drop disposable packets.
dynamicOf(ArrayPacketBuffer, ResourcePool) - Static method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
dynamicOf(ByteBuffer, ResourcePool) - Static method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
DynamicPacketBuffer - Class in io.github.joealisson.mmocore.internal
 
DynamicPacketBuffer(ByteBuffer, ResourcePool) - Constructor for class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 

E

encrypt(Buffer, int, int) - Method in class io.github.joealisson.mmocore.Client
Encrypt the data in-place.
execute(ReadablePacket<T>) - Method in interface io.github.joealisson.mmocore.PacketExecutor
Executes the packet.

F

filter(ConnectionFilter) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Sets a filter to be used on incoming connections.

G

get() - Method in class io.github.joealisson.mmocore.internal.BufferPool
 
getBuffer(int) - Method in class io.github.joealisson.mmocore.ResourcePool
 
getClient() - Method in class io.github.joealisson.mmocore.ReadablePacket
 
getEstimateQueueSize() - Method in class io.github.joealisson.mmocore.Client
 
getHeaderBuffer() - Method in class io.github.joealisson.mmocore.ResourcePool
 
getHostAddress() - Method in class io.github.joealisson.mmocore.Client
 
getResourcePool() - Method in class io.github.joealisson.mmocore.Connection
 
getSegmentBuffer() - Method in class io.github.joealisson.mmocore.ResourcePool
 
getSegmentSize() - Method in class io.github.joealisson.mmocore.ResourcePool
 

H

handlePacket(ReadableBuffer, T) - Method in interface io.github.joealisson.mmocore.PacketHandler
Convert the data into a packet.

I

initBufferPoolFactor(float) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Define the factor of pre-initialized ByteBuffer inside a pool.
initBufferPoolFactor(float) - Method in class io.github.joealisson.mmocore.Connector
define the factor of pre-initialized ByteBuffer inside a pool.
initialize(float) - Method in class io.github.joealisson.mmocore.internal.BufferPool
 
initializeBuffers(float) - Method in class io.github.joealisson.mmocore.ResourcePool
 
InternalWritableBuffer - Class in io.github.joealisson.mmocore.internal
 
InternalWritableBuffer() - Constructor for class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
io.github.joealisson.mmocore - package io.github.joealisson.mmocore
 
io.github.joealisson.mmocore.internal - package io.github.joealisson.mmocore.internal
 
isConnected() - Method in class io.github.joealisson.mmocore.Client
 

L

limit() - Method in interface io.github.joealisson.mmocore.Buffer
 
limit() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
limit() - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
limit() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
limit(int) - Method in interface io.github.joealisson.mmocore.Buffer
Change the buffer's limit
limit(int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
limit(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
limit(int) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 

M

mark() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
mark() - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
mark() - Method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
maxCachedThreads(int) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Set the size of max threads allowed in the cached thread pool.
maxCachedThreads(int) - Method in class io.github.joealisson.mmocore.Connector
Set the size of max threads allowed in the cached thread pool.
MMOThreadFactory - Class in io.github.joealisson.mmocore.internal
 
MMOThreadFactory(String) - Constructor for class io.github.joealisson.mmocore.internal.MMOThreadFactory
 

N

newThread(Runnable) - Method in class io.github.joealisson.mmocore.internal.MMOThreadFactory
 

O

of(ByteBuffer) - Static method in interface io.github.joealisson.mmocore.ReadableBuffer
 
onConnected() - Method in class io.github.joealisson.mmocore.Client
Handles the client's connection.
onDisconnection() - Method in class io.github.joealisson.mmocore.Client
Handles the client's disconnection.

P

PacketExecutor<T extends Client<Connection<T>>> - Interface in io.github.joealisson.mmocore
This class is responsible to execute the incoming packets.
PacketHandler<T extends Client<Connection<T>>> - Interface in io.github.joealisson.mmocore
This class is responsible to handler the incoming data.
position() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
position() - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
position() - Method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
position(int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
position(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
position(int) - Method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 

R

read() - Method in class io.github.joealisson.mmocore.ReadablePacket
 
ReadableBuffer - Interface in io.github.joealisson.mmocore
 
ReadablePacket<T extends Client<Connection<T>>> - Class in io.github.joealisson.mmocore
This class represents a Packet received from the client.
ReadablePacket() - Constructor for class io.github.joealisson.mmocore.ReadablePacket
 
readBoolean() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads byte from the buffer
readByte() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readByte() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readByte() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
Reads raw byte from the buffer
readByte() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads raw byte from the buffer
readByte(int) - Method in interface io.github.joealisson.mmocore.Buffer
Read byte from the buffer at index.
readByte(int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readByte(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
readByte(int) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readBytes(byte[]) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readBytes(byte[]) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readBytes(byte[]) - Method in interface io.github.joealisson.mmocore.ReadableBuffer
 
readBytes(byte[]) - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads as many bytes as the length of the array.
readBytes(byte[], int, int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readBytes(byte[], int, int) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readBytes(byte[], int, int) - Method in interface io.github.joealisson.mmocore.ReadableBuffer
 
readBytes(byte[], int, int) - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads as many bytes as the given length (len).
readBytes(int, byte[]) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
readChar() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readChar() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readChar() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
 
readChar() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads char from the buffer
readDouble() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readDouble() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readDouble() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
 
readDouble() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads double from the buffer.
readDouble(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
readFloat() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readFloat() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readFloat() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
 
readFloat() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads float from the buffer.
readFloat(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
readInt() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readInt() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readInt() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
Reads int from the buffer.
readInt() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads int from the buffer.
readInt(int) - Method in interface io.github.joealisson.mmocore.Buffer
Read int from the buffer at index.
readInt(int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readInt(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
readInt(int) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readIntAsBoolean() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads int from the buffer.
readLong() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readLong() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readLong() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
 
readLong() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads long from the buffer.
readLong(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
readShort() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readShort() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readShort() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
Reads short from the buffer.
readShort() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads short from the buffer.
readShort(int) - Method in interface io.github.joealisson.mmocore.Buffer
Read short from the buffer at index.
readShort(int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
readShort(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
readShort(int) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
readShortAsBoolean() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads short from the buffer.
readSizedString() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads a predefined length String from the buffer.
readString() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads String from the buffer.
readUnsignedByte() - Method in class io.github.joealisson.mmocore.ReadablePacket
Reads byte from the buffer.
recycle(ByteBuffer) - Method in class io.github.joealisson.mmocore.internal.BufferPool
 
recycleAndGetNew(ByteBuffer, int) - Method in class io.github.joealisson.mmocore.ResourcePool
 
recycleBuffer(ByteBuffer) - Method in class io.github.joealisson.mmocore.ResourcePool
 
releaseResources() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
releaseResources() - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
releaseResources() - Method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
remaining() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
remaining() - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
remaining() - Method in interface io.github.joealisson.mmocore.ReadableBuffer
 
ResourcePool - Class in io.github.joealisson.mmocore
 
run() - Method in class io.github.joealisson.mmocore.ConnectionHandler
Start to listen connections.

S

sendInBroadcast(boolean) - Method in class io.github.joealisson.mmocore.WritablePacket
Mark this packet as broadcast.
setBufferSegmentSize(int) - Method in class io.github.joealisson.mmocore.ResourcePool
 
shutdown() - Method in class io.github.joealisson.mmocore.ConnectionHandler
Shutdown the connection listener, the thread pool and all associated resources.
shutdownWaitTime(long) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Sets the shutdown wait time in milliseconds.
SinglePacketBuffer - Class in io.github.joealisson.mmocore.internal
 
SinglePacketBuffer(ByteBuffer) - Constructor for class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 

T

threadPoolSize(int) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Set the size of the threadPool used to manage the connections and data sending.
threadPoolSize(int) - Method in class io.github.joealisson.mmocore.Connector
Set the size of the threadPool used to manage the connections and data sending.
toByteBuffers() - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
toByteBuffers() - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
toByteBuffers() - Method in class io.github.joealisson.mmocore.internal.InternalWritableBuffer
 
toString() - Method in class io.github.joealisson.mmocore.WritablePacket
 

U

useCachedThreadPool(boolean) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Configures the connection to use CachedThreadPool as defined in AsynchronousChannelGroup.withCachedThreadPool(java.util.concurrent.ExecutorService, int).
useCachedThreadPool(boolean) - Method in class io.github.joealisson.mmocore.Connector
Configures the connection to use CachedThreadPool as defined in AsynchronousChannelGroup.withCachedThreadPool(java.util.concurrent.ExecutorService, int).
useNagle(boolean) - Method in class io.github.joealisson.mmocore.ConnectionBuilder
Defines if small outgoing packets must be combined to be sent all at once.

W

WritableBuffer - Class in io.github.joealisson.mmocore
 
WritableBuffer() - Constructor for class io.github.joealisson.mmocore.WritableBuffer
 
WritablePacket<T extends Client<Connection<T>>> - Class in io.github.joealisson.mmocore
This class represents a Packet that can be sent to clients.
WritablePacket() - Constructor for class io.github.joealisson.mmocore.WritablePacket
 
write(T, WritableBuffer) - Method in class io.github.joealisson.mmocore.WritablePacket
Writes the data to the client
writeByte(boolean) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write boolean to the buffer.
writeByte(byte) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeByte(byte) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeByte(byte) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write a byte to the buffer.
writeByte(int) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write a int to the buffer, the int is casted to a byte;
writeByte(int, byte) - Method in interface io.github.joealisson.mmocore.Buffer
Write byte to the buffer at index.
writeByte(int, byte) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeByte(int, byte) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeByte(int, byte) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
writeBytes(byte[]) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeBytes(byte[]) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeBytes(byte...) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write byte[] to the buffer.
writeChar(char) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeChar(char) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeChar(char) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write char to the buffer.
16 bit char
writeDouble(double) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeDouble(double) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeDouble(double) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write double to the buffer.
writeFloat(float) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeFloat(float) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeFloat(float) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write float to the buffer.
writeInt(boolean) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write boolean to the buffer.
writeInt(int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeInt(int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeInt(int) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write int to the buffer.
writeInt(int, int) - Method in interface io.github.joealisson.mmocore.Buffer
Write int to the buffer at index.
writeInt(int, int) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeInt(int, int) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeInt(int, int) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
writeLong(long) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeLong(long) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeLong(long) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write long to the buffer.
writePacket(WritablePacket<? extends Client<T>>) - Method in class io.github.joealisson.mmocore.Client
Sends a packet to this client.
writePackets(Collection<WritablePacket<? extends Client<T>>>) - Method in class io.github.joealisson.mmocore.Client
 
writeShort(boolean) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write boolean to the buffer.
writeShort(int) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write short to the buffer.
writeShort(int, short) - Method in interface io.github.joealisson.mmocore.Buffer
Write int to the buffer at index.
writeShort(int, short) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeShort(int, short) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeShort(int, short) - Method in class io.github.joealisson.mmocore.internal.SinglePacketBuffer
 
writeShort(short) - Method in class io.github.joealisson.mmocore.internal.ArrayPacketBuffer
 
writeShort(short) - Method in class io.github.joealisson.mmocore.internal.DynamicPacketBuffer
 
writeShort(short) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write short to the buffer.
writeSizedString(CharSequence) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write String to the buffer preceded by a short 16 bit with String length and no null termination.
writeString(CharSequence) - Method in class io.github.joealisson.mmocore.WritableBuffer
Write a String to the buffer with a null termination (\000).
A B C D E F G H I L M N O P R S T U W 
All Classes All Packages