Package com.rabbitmq.client.impl
Class MethodArgumentReader
- java.lang.Object
-
- com.rabbitmq.client.impl.MethodArgumentReader
-
-
Constructor Summary
Constructors Constructor Description MethodArgumentReader(ValueReader in)Construct a MethodArgumentReader from the givenValueReader.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanreadBit()Public API - reads a bit/boolean argument.intreadLong()Public API - reads an integer argument.longreadLonglong()Public API - reads a long integer argument.LongStringreadLongstr()Public API - reads a long string argument.intreadOctet()Public API - reads an octet argument.intreadShort()Public API - reads a short integer argument.StringreadShortstr()Public API - reads a short string argument.Map<String,Object>readTable()Public API - reads a table argument.DatereadTimestamp()Public API - reads an timestamp argument.
-
-
-
Constructor Detail
-
MethodArgumentReader
public MethodArgumentReader(ValueReader in)
Construct a MethodArgumentReader from the givenValueReader.
-
-
Method Detail
-
readShortstr
public final String readShortstr() throws IOException
Public API - reads a short string argument.- Throws:
IOException
-
readLongstr
public final LongString readLongstr() throws IOException
Public API - reads a long string argument.- Throws:
IOException
-
readShort
public final int readShort() throws IOExceptionPublic API - reads a short integer argument.- Throws:
IOException
-
readLong
public final int readLong() throws IOExceptionPublic API - reads an integer argument.- Throws:
IOException
-
readLonglong
public final long readLonglong() throws IOExceptionPublic API - reads a long integer argument.- Throws:
IOException
-
readBit
public final boolean readBit() throws IOExceptionPublic API - reads a bit/boolean argument.- Throws:
IOException
-
readTable
public final Map<String,Object> readTable() throws IOException
Public API - reads a table argument.- Throws:
IOException
-
readOctet
public final int readOctet() throws IOExceptionPublic API - reads an octet argument.- Throws:
IOException
-
readTimestamp
public final Date readTimestamp() throws IOException
Public API - reads an timestamp argument.- Throws:
IOException
-
-