Uses of Interface
com.rabbitmq.client.LongString
Package
Description
The client API proper: classes and interfaces representing the AMQP
connections, channels, and wire-protocol framing descriptors.
Implementations of interfaces specified in the client API, and their supporting classes.
-
Uses of LongString in com.rabbitmq.client
Modifier and TypeMethodDescriptionAMQP.Connection.Secure.getChallenge()
AMQP.Channel.OpenOk.getChannelId()
AMQP.Connection.Start.getLocales()
AMQP.Connection.Start.getMechanisms()
AMQP.Connection.UpdateSecret.getNewSecret()
AMQP.Connection.SecureOk.getResponse()
AMQP.Connection.StartOk.getResponse()
SaslMechanism.handleChallenge
(LongString challenge, String username, String password) Handle one round of challenge-responseModifier and TypeMethodDescriptionAMQP.Connection.Secure.Builder.challenge
(LongString challenge) AMQP.Channel.OpenOk.Builder.channelId
(LongString channelId) SaslMechanism.handleChallenge
(LongString challenge, String username, String password) Handle one round of challenge-responseAMQP.Connection.Start.Builder.locales
(LongString locales) AMQP.Connection.Start.Builder.mechanisms
(LongString mechanisms) AMQP.Connection.UpdateSecret.Builder.newSecret
(LongString newSecret) AMQP.Connection.SecureOk.Builder.response
(LongString response) AMQP.Connection.StartOk.Builder.response
(LongString response) -
Uses of LongString in com.rabbitmq.client.impl
Modifier and TypeMethodDescriptionstatic 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.AMQImpl.Connection.Secure.getChallenge()
AMQImpl.Channel.OpenOk.getChannelId()
AMQImpl.Connection.Start.getLocales()
AMQImpl.Connection.Start.getMechanisms()
AMQImpl.Connection.UpdateSecret.getNewSecret()
AMQImpl.Connection.SecureOk.getResponse()
AMQImpl.Connection.StartOk.getResponse()
AnonymousMechanism.handleChallenge
(LongString challenge, String username, String password) CRDemoMechanism.handleChallenge
(LongString challenge, String username, String password) ExternalMechanism.handleChallenge
(LongString challenge, String username, String password) PlainMechanism.handleChallenge
(LongString challenge, String username, String password) ContentHeaderPropertyReader.readLongstr()
Reads and returns an AMQP "long string" (binary) content header field.final LongString
MethodArgumentReader.readLongstr()
Public API - reads a long string argument.final LongString
ValueReader.readLongstr()
Public API - reads a long string.Modifier and TypeMethodDescriptionAnonymousMechanism.handleChallenge
(LongString challenge, String username, String password) CRDemoMechanism.handleChallenge
(LongString challenge, String username, String password) ExternalMechanism.handleChallenge
(LongString challenge, String username, String password) PlainMechanism.handleChallenge
(LongString challenge, String username, String password) void
ContentHeaderPropertyWriter.writeLongstr
(LongString str) final void
MethodArgumentWriter.writeLongstr
(LongString str) Public API - encodes a long string argument from a LongString.final void
ValueWriter.writeLongstr
(LongString str) Public API - encodes a long string from a LongString.ModifierConstructorDescriptionOpenOk
(LongString channelId) Secure
(LongString challenge) SecureOk
(LongString response) Start
(int versionMajor, int versionMinor, Map<String, Object> serverProperties, LongString mechanisms, LongString locales) UpdateSecret
(LongString newSecret, String reason)