Class BinaryReaderHandles
- java.lang.Object
-
- org.apache.ignite.internal.binary.BinaryReaderHandles
-
public class BinaryReaderHandles extends Object
Reader handles.
-
-
Constructor Summary
Constructors Constructor Description BinaryReaderHandles()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Tget(int pos)Get object by position.booleanisEmpty()voidput(int pos, Object obj)Put object to registry and return previous position (if any).
-
-
-
Method Detail
-
get
@Nullable public <T> T get(int pos)
Get object by position.- Parameters:
pos- Position.- Returns:
- Object.
-
put
public void put(int pos, Object obj)Put object to registry and return previous position (if any).- Parameters:
pos- Position.obj- Object.
-
isEmpty
public boolean isEmpty()
-
-