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 boolean
readBit()
Public API - reads a bit/boolean argument.int
readLong()
Public API - reads an integer argument.long
readLonglong()
Public API - reads a long integer argument.LongString
readLongstr()
Public API - reads a long string argument.int
readOctet()
Public API - reads an octet argument.int
readShort()
Public API - reads a short integer argument.String
readShortstr()
Public API - reads a short string argument.Map<String,Object>
readTable()
Public API - reads a table argument.Date
readTimestamp()
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 IOException
Public API - reads a short integer argument.- Throws:
IOException
-
readLong
public final int readLong() throws IOException
Public API - reads an integer argument.- Throws:
IOException
-
readLonglong
public final long readLonglong() throws IOException
Public API - reads a long integer argument.- Throws:
IOException
-
readBit
public final boolean readBit() throws IOException
Public 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 IOException
Public API - reads an octet argument.- Throws:
IOException
-
readTimestamp
public final Date readTimestamp() throws IOException
Public API - reads an timestamp argument.- Throws:
IOException
-
-