Uses of Interface
com.rabbitmq.client.LongString
Packages that use 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
Fields in com.rabbitmq.client declared as LongStringModifier and TypeFieldDescriptionprivate LongStringAMQP.Connection.Secure.Builder.challengeprivate LongStringAMQP.Channel.OpenOk.Builder.channelIdprivate LongStringAMQP.Connection.Start.Builder.localesprivate LongStringAMQP.Connection.Start.Builder.mechanismsprivate LongStringAMQP.Connection.UpdateSecret.Builder.newSecretprivate LongStringAMQP.Connection.SecureOk.Builder.responseprivate LongStringAMQP.Connection.StartOk.Builder.responseMethods in com.rabbitmq.client that return LongStringModifier 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()JDKSaslConfig.JDKSaslMechanism.handleChallenge(LongString challenge, String username, String password) SaslMechanism.handleChallenge(LongString challenge, String username, String password) Handle one round of challenge-responseMethods in com.rabbitmq.client with parameters of type LongStringModifier and TypeMethodDescriptionAMQP.Connection.Secure.Builder.challenge(LongString challenge) AMQP.Channel.OpenOk.Builder.channelId(LongString channelId) JDKSaslConfig.JDKSaslMechanism.handleChallenge(LongString challenge, String username, String password) 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
Classes in com.rabbitmq.client.impl that implement LongStringModifier and TypeClassDescriptionprivate static classPrivate API - Implementation ofLongString.Fields in com.rabbitmq.client.impl declared as LongStringModifier and TypeFieldDescriptionprivate final LongStringAMQImpl.Connection.Secure.challengeprivate final LongStringAMQImpl.Channel.OpenOk.channelIdprivate final LongStringAMQImpl.Connection.Start.localesprivate final LongStringAMQImpl.Connection.Start.mechanismsprivate final LongStringAMQImpl.Connection.UpdateSecret.newSecretprivate final LongStringUpdateSecretExtension.UpdateSecret.newSecretprivate final LongStringAMQImpl.Connection.SecureOk.responseprivate final LongStringAMQImpl.Connection.StartOk.responseMethods in com.rabbitmq.client.impl that return LongStringModifier and TypeMethodDescriptionstatic LongStringLongStringHelper.asLongString(byte[] bytes) Converts a binary block to a LongString.static LongStringLongStringHelper.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()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 LongStringMethodArgumentReader.readLongstr()Public API - reads a long string argument.final LongStringValueReader.readLongstr()Public API - reads a long string.private static LongStringValueReader.readLongstr(DataInputStream in) Convenience method - reads a long string argument from a DataInputStream.Methods in com.rabbitmq.client.impl with parameters of type LongStringModifier and TypeMethodDescriptionCRDemoMechanism.handleChallenge(LongString challenge, String username, String password) ExternalMechanism.handleChallenge(LongString challenge, String username, String password) PlainMechanism.handleChallenge(LongString challenge, String username, String password) voidContentHeaderPropertyWriter.writeLongstr(LongString str) final voidMethodArgumentWriter.writeLongstr(LongString str) Public API - encodes a long string argument from a LongString.final voidValueWriter.writeLongstr(LongString str) Public API - encodes a long string from a LongString.Constructors in com.rabbitmq.client.impl with parameters of type LongStringModifierConstructorDescriptionOpenOk(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) UpdateSecret(LongString newSecret, String reason)