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 LongStringAMQP.Connection.Secure. getChallenge()LongStringAMQP.Channel.OpenOk. getChannelId()LongStringAMQP.Connection.Start. getLocales()LongStringAMQP.Connection.Start. getMechanisms()LongStringAMQP.Connection.UpdateSecret. getNewSecret()LongStringAMQP.Connection.SecureOk. getResponse()LongStringAMQP.Connection.StartOk. getResponse()LongStringSaslMechanism. 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.BuilderAMQP.Connection.Secure.Builder. challenge(LongString challenge)AMQP.Channel.OpenOk.BuilderAMQP.Channel.OpenOk.Builder. channelId(LongString channelId)LongStringSaslMechanism. handleChallenge(LongString challenge, String username, String password)Handle one round of challenge-responseAMQP.Connection.Start.BuilderAMQP.Connection.Start.Builder. locales(LongString locales)AMQP.Connection.Start.BuilderAMQP.Connection.Start.Builder. mechanisms(LongString mechanisms)AMQP.Connection.UpdateSecret.BuilderAMQP.Connection.UpdateSecret.Builder. newSecret(LongString newSecret)AMQP.Connection.SecureOk.BuilderAMQP.Connection.SecureOk.Builder. response(LongString response)AMQP.Connection.StartOk.BuilderAMQP.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 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.LongStringAMQImpl.Connection.Secure. getChallenge()LongStringAMQImpl.Channel.OpenOk. getChannelId()LongStringAMQImpl.Connection.Start. getLocales()LongStringAMQImpl.Connection.Start. getMechanisms()LongStringAMQImpl.Connection.UpdateSecret. getNewSecret()LongStringAMQImpl.Connection.SecureOk. getResponse()LongStringAMQImpl.Connection.StartOk. getResponse()LongStringCRDemoMechanism. handleChallenge(LongString challenge, String username, String password)LongStringExternalMechanism. handleChallenge(LongString challenge, String username, String password)LongStringPlainMechanism. handleChallenge(LongString challenge, String username, String password)LongStringContentHeaderPropertyReader. readLongstr()Reads and returns an AMQP "long string" (binary) content header field.LongStringMethodArgumentReader. readLongstr()Public API - reads a long string argument.LongStringValueReader. readLongstr()Public API - reads a long string.Methods in com.rabbitmq.client.impl with parameters of type LongString Modifier and Type Method Description LongStringCRDemoMechanism. handleChallenge(LongString challenge, String username, String password)LongStringExternalMechanism. handleChallenge(LongString challenge, String username, String password)LongStringPlainMechanism. handleChallenge(LongString challenge, String username, String password)voidContentHeaderPropertyWriter. writeLongstr(LongString str)voidMethodArgumentWriter. writeLongstr(LongString str)Public API - encodes a long string argument from a LongString.voidValueWriter. 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)
-