Uses of Interface
com.rabbitmq.client.LongString
-
Packages that use LongString Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors.com.rabbitmq.client.impl Implementations of interfaces specified in the client API, and their supporting classes. -
-
Uses of LongString in com.rabbitmq.client
Methods in com.rabbitmq.client that return LongString Modifier and Type Method Description LongString
AMQP.Connection.Secure. getChallenge()
LongString
AMQP.Channel.OpenOk. getChannelId()
LongString
AMQP.Connection.Start. getLocales()
LongString
AMQP.Connection.Start. getMechanisms()
LongString
AMQP.Connection.UpdateSecret. getNewSecret()
LongString
AMQP.Connection.SecureOk. getResponse()
LongString
AMQP.Connection.StartOk. getResponse()
LongString
SaslMechanism. handleChallenge(LongString challenge, String username, String password)
Handle one round of challenge-responseMethods in com.rabbitmq.client with parameters of type LongString Modifier and Type Method Description AMQP.Connection.Secure.Builder
AMQP.Connection.Secure.Builder. challenge(LongString challenge)
AMQP.Channel.OpenOk.Builder
AMQP.Channel.OpenOk.Builder. channelId(LongString channelId)
LongString
SaslMechanism. handleChallenge(LongString challenge, String username, String password)
Handle one round of challenge-responseAMQP.Connection.Start.Builder
AMQP.Connection.Start.Builder. locales(LongString locales)
AMQP.Connection.Start.Builder
AMQP.Connection.Start.Builder. mechanisms(LongString mechanisms)
AMQP.Connection.UpdateSecret.Builder
AMQP.Connection.UpdateSecret.Builder. newSecret(LongString newSecret)
AMQP.Connection.SecureOk.Builder
AMQP.Connection.SecureOk.Builder. response(LongString response)
AMQP.Connection.StartOk.Builder
AMQP.Connection.StartOk.Builder. response(LongString response)
-
Uses of LongString in com.rabbitmq.client.impl
Methods in com.rabbitmq.client.impl that return LongString Modifier and Type Method Description static LongString
LongStringHelper. asLongString(byte[] bytes)
Converts a binary block to a LongString.static LongString
LongStringHelper. asLongString(String string)
Converts a String to a LongString using UTF-8 encoding.LongString
AMQImpl.Connection.Secure. getChallenge()
LongString
AMQImpl.Channel.OpenOk. getChannelId()
LongString
AMQImpl.Connection.Start. getLocales()
LongString
AMQImpl.Connection.Start. getMechanisms()
LongString
AMQImpl.Connection.UpdateSecret. getNewSecret()
LongString
AMQImpl.Connection.SecureOk. getResponse()
LongString
AMQImpl.Connection.StartOk. getResponse()
LongString
CRDemoMechanism. handleChallenge(LongString challenge, String username, String password)
LongString
ExternalMechanism. handleChallenge(LongString challenge, String username, String password)
LongString
PlainMechanism. handleChallenge(LongString challenge, String username, String password)
LongString
ContentHeaderPropertyReader. readLongstr()
Reads and returns an AMQP "long string" (binary) content header field.LongString
MethodArgumentReader. readLongstr()
Public API - reads a long string argument.LongString
ValueReader. readLongstr()
Public API - reads a long string.Methods in com.rabbitmq.client.impl with parameters of type LongString Modifier and Type Method Description LongString
CRDemoMechanism. handleChallenge(LongString challenge, String username, String password)
LongString
ExternalMechanism. handleChallenge(LongString challenge, String username, String password)
LongString
PlainMechanism. handleChallenge(LongString challenge, String username, String password)
void
ContentHeaderPropertyWriter. writeLongstr(LongString str)
void
MethodArgumentWriter. writeLongstr(LongString str)
Public API - encodes a long string argument from a LongString.void
ValueWriter. writeLongstr(LongString str)
Public API - encodes a long string from a LongString.Constructors in com.rabbitmq.client.impl with parameters of type LongString Constructor Description OpenOk(LongString channelId)
Secure(LongString challenge)
SecureOk(LongString response)
Start(int versionMajor, int versionMinor, Map<String,Object> serverProperties, LongString mechanisms, LongString locales)
StartOk(Map<String,Object> clientProperties, String mechanism, LongString response, String locale)
UpdateSecret(LongString newSecret, String reason)
-