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
Fields in com.rabbitmq.client declared as LongString Modifier and Type Field Description private LongString
AMQP.Connection.Secure.Builder. challenge
private LongString
AMQP.Channel.OpenOk.Builder. channelId
private LongString
AMQP.Connection.Start.Builder. locales
private LongString
AMQP.Connection.Start.Builder. mechanisms
private LongString
AMQP.Connection.UpdateSecret.Builder. newSecret
private LongString
AMQP.Connection.SecureOk.Builder. response
private LongString
AMQP.Connection.StartOk.Builder. response
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
JDKSaslConfig.JDKSaslMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.String password)
LongString
SaslMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.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
JDKSaslConfig.JDKSaslMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.String password)
LongString
SaslMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.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
Classes in com.rabbitmq.client.impl that implement LongString Modifier and Type Class Description private static class
LongStringHelper.ByteArrayLongString
Private API - Implementation ofLongString
.Fields in com.rabbitmq.client.impl declared as LongString Modifier and Type Field Description private LongString
AMQImpl.Connection.Secure. challenge
private LongString
AMQImpl.Channel.OpenOk. channelId
private LongString
AMQImpl.Connection.Start. locales
private LongString
AMQImpl.Connection.Start. mechanisms
private LongString
AMQImpl.Connection.UpdateSecret. newSecret
private LongString
UpdateSecretExtension.UpdateSecret. newSecret
private LongString
AMQImpl.Connection.SecureOk. response
private LongString
AMQImpl.Connection.StartOk. response
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(java.lang.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, java.lang.String username, java.lang.String password)
LongString
ExternalMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.String password)
LongString
PlainMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.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.private static LongString
ValueReader. readLongstr(java.io.DataInputStream in)
Convenience method - reads a long string argument from a DataInputStream.Methods in com.rabbitmq.client.impl with parameters of type LongString Modifier and Type Method Description LongString
CRDemoMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.String password)
LongString
ExternalMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.String password)
LongString
PlainMechanism. handleChallenge(LongString challenge, java.lang.String username, java.lang.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, java.util.Map<java.lang.String,java.lang.Object> serverProperties, LongString mechanisms, LongString locales)
StartOk(java.util.Map<java.lang.String,java.lang.Object> clientProperties, java.lang.String mechanism, LongString response, java.lang.String locale)
UpdateSecret(LongString newSecret, java.lang.String reason)
UpdateSecret(LongString newSecret, java.lang.String reason)
-