Skip navigation links
A B C D E G H I L M N O P Q R S T U V W 

A

acquireConnection() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
Request a HttpClientConnection from the Connection Pool.
acquireNativeHandle(long) - Method in class software.amazon.awssdk.crt.CrtResource
Takes ownership of a native object where the native pointer is tracked as a long.
addReferenceTo(T) - Method in class software.amazon.awssdk.crt.CrtResource
Marks a resource as referenced by this resource.
AsyncCallback - Interface in software.amazon.awssdk.crt
 
AWS_CRT_SUCCESS - Static variable in class software.amazon.awssdk.crt.CRT
 
awsErrorString(int) - Static method in class software.amazon.awssdk.crt.CRT
Given an integer error code from an internal operation

B

ByteBufferUtils - Class in software.amazon.awssdk.crt.utils
Utility Class with Helper functions for working with ByteBuffers

C

canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.CrtResource
Override that determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.http.HttpClientConnection
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.http.HttpStream
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.io.ClientBootstrap
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.io.EventLoopGroup
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.io.HostResolver
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.io.SocketOptions
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.io.TlsContext
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.mqtt.MqttClient
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
canReleaseReferencesImmediately() - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Determines whether a resource releases its dependencies at the same time the native handle is released or if it waits.
cleanUpPem(String) - Static method in class software.amazon.awssdk.crt.utils.PemUtils
Cleanup Function that removes most formatting and copy/paste mistakes from PEM formatted Strings.
ClientBootstrap - Class in software.amazon.awssdk.crt.io
This class wraps the aws_client_bootstrap from aws-c-io to provide a client context for all protocol stacks in the AWS Common Runtime.
ClientBootstrap(int) - Constructor for class software.amazon.awssdk.crt.io.ClientBootstrap
Creates a new ClientBootstrap.
ClientBootstrap(EventLoopGroup, HostResolver) - Constructor for class software.amazon.awssdk.crt.io.ClientBootstrap
Creates a new ClientBootstrap.
close() - Method in class software.amazon.awssdk.crt.CrtResource
Decrements the reference count to this resource.
collectNativeResources(Consumer<String>) - Static method in class software.amazon.awssdk.crt.CrtResource
 
connect(String, String, int) - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Connect to the service endpoint and start a session without TLS.
connect(String, String, int, SocketOptions, boolean, int, int) - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Connect to the service endpoint and start a session
create(HttpClientConnectionManagerOptions) - Static method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
 
createDefaultClient() - Static method in class software.amazon.awssdk.crt.io.TlsContextOptions
Helper which creates a default set of TLS options for the current platform
createDefaultServer() - Static method in class software.amazon.awssdk.crt.io.TlsContextOptions
Helper which creates a default set of TLS options for the current platform
createWithMTLS(String, String) - Static method in class software.amazon.awssdk.crt.io.TlsContextOptions
Helper which creates TLS options using a certificate and private key
createWithMTLSFromPath(String, String) - Static method in class software.amazon.awssdk.crt.io.TlsContextOptions
Helper which creates TLS options using a certificate and private key
createWithMTLSPkcs12(String, String) - Static method in class software.amazon.awssdk.crt.io.TlsContextOptions
OSX only - Helper which creates TLS options using PKCS12
CRT - Class in software.amazon.awssdk.crt
This class is responsible for loading the aws-crt-jni shared lib for the current platform out of aws-crt-java.jar.
CRT() - Constructor for class software.amazon.awssdk.crt.CRT
 
CRT.UnknownPlatformException - Exception in software.amazon.awssdk.crt
 
CrtHttpStreamHandler - Interface in software.amazon.awssdk.crt.http
Interface that Native code knows how to call when handling Http Request/Responses Maps 1-1 to the Native Http API here: https://github.com/awslabs/aws-c-http/blob/master/include/aws/http/request_response.h
CrtResource - Class in software.amazon.awssdk.crt
This wraps a native pointer to an AWS Common Runtime resource.
CrtResource() - Constructor for class software.amazon.awssdk.crt.CrtResource
 
CrtRuntimeException - Exception in software.amazon.awssdk.crt
This exception will be thrown by any exceptional cases encountered within the JNI bindings to the AWS Common Runtime

D

DEFAULT_MAX_BUFFER_SIZE - Static variable in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
 
DEFAULT_MAX_CONNECTIONS - Static variable in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
 
DEFAULT_MAX_WINDOW_SIZE - Static variable in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
 
disconnect() - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Disconnects the current session

E

EventLoopGroup - Class in software.amazon.awssdk.crt.io
This class wraps the aws_event_loop_group from aws-c-io to provide access to an event loop for the MQTT protocol stack in the AWS Common Runtime.
EventLoopGroup(int) - Constructor for class software.amazon.awssdk.crt.io.EventLoopGroup
Creates a new event loop group for the I/O subsystem to use to run blocking I/O requests

G

getAuthorizationPassword() - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Gets the password to use for authorization
getAuthorizationType() - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Gets the proxy authorization type
getAuthorizationUsername() - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Gets the username to use for authorization
getBufferSize() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the IO buffer size to use for connections in the connection pool
getClientBootstrap() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the client bootstrap instance to use to create the pool's connections
getEncodedPath() - Method in class software.amazon.awssdk.crt.http.HttpRequest
 
getHeaders() - Method in class software.amazon.awssdk.crt.http.HttpRequest
 
getHost() - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Gets the proxy host to connect through
getMaxConnections() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
Getter methods
getMaxConnections() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the maximum number of connections allowed in the connection pool
getMethod() - Method in class software.amazon.awssdk.crt.http.HttpRequest
 
getName() - Method in class software.amazon.awssdk.crt.http.HttpHeader
 
getNativeHandle() - Method in class software.amazon.awssdk.crt.CrtResource
returns the native handle associated with this CRTResource.
getPayload() - Method in class software.amazon.awssdk.crt.mqtt.MqttMessage
Gets the message payload
getPort() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the port to connect to for connections in the connection pool
getPort() - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Gets the proxy port to connect through
getProxyOptions() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the proxy options for connections in the connection pool
getResponseStatusCode() - Method in class software.amazon.awssdk.crt.http.HttpStream
Retrieves the Http Response Status Code
getShutdownCompleteFuture() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
 
getShutdownCompleteFuture() - Method in class software.amazon.awssdk.crt.io.EventLoopGroup
 
getSocketOptions() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the socket options to use for connections in the connection pool
getTlsContext() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the tls context to use for connections in the connection pool
getTlsContext() - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Gets the tls context for the proxy connection
getTlsContext() - Method in class software.amazon.awssdk.crt.mqtt.MqttClient
Gets the tls context used by all connections associated with this client.
getTopic() - Method in class software.amazon.awssdk.crt.mqtt.MqttMessage
Gets the topic associated with this message
getUri() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
 
getUri() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the URI to use for connections in the connection pool
getValue() - Method in class software.amazon.awssdk.crt.http.HttpHeader
 
getValue() - Method in enum software.amazon.awssdk.crt.http.HttpHeaderBlock
 
getValue() - Method in enum software.amazon.awssdk.crt.Log.LogLevel
 
getValue() - Method in enum software.amazon.awssdk.crt.Log.LogSubject
 
getValue() - Method in enum software.amazon.awssdk.crt.mqtt.QualityOfService
 
getWindowSize() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
 
getWindowSize() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Gets the IO channel window size to use for connections in the connection pool

H

HostResolver - Class in software.amazon.awssdk.crt.io
 
HostResolver(EventLoopGroup) - Constructor for class software.amazon.awssdk.crt.io.HostResolver
 
HostResolver(EventLoopGroup, int) - Constructor for class software.amazon.awssdk.crt.io.HostResolver
 
HttpClientConnection - Class in software.amazon.awssdk.crt.http
This class wraps aws-c-http to provide the basic HTTP request/response functionality via the AWS Common Runtime.
HttpClientConnection(HttpClientConnectionManager, long) - Constructor for class software.amazon.awssdk.crt.http.HttpClientConnection
 
HttpClientConnectionManager - Class in software.amazon.awssdk.crt.http
Manages a Pool of Http Connections
HttpClientConnectionManagerOptions - Class in software.amazon.awssdk.crt.http
Contains all the configuration options for a HttpConnectionPoolManager instance
HttpClientConnectionManagerOptions() - Constructor for class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
 
HttpException - Exception in software.amazon.awssdk.crt.http
This exception will be thrown by any exceptional cases encountered within the JNI bindings to the AWS Common Runtime
HttpException(int) - Constructor for exception software.amazon.awssdk.crt.http.HttpException
 
HttpHeader - Class in software.amazon.awssdk.crt.http
 
HttpHeader(String, String) - Constructor for class software.amazon.awssdk.crt.http.HttpHeader
 
HttpHeaderBlock - Enum in software.amazon.awssdk.crt.http
Type of header block
HttpProxyOptions - Class in software.amazon.awssdk.crt.http
This class provides access to Http proxy configuration options
HttpProxyOptions() - Constructor for class software.amazon.awssdk.crt.http.HttpProxyOptions
Creates a new set of proxy options
HttpProxyOptions.HttpProxyAuthorizationType - Enum in software.amazon.awssdk.crt.http
what kind of authentication, if any, to use when connecting to a proxy server
HttpRequest - Class in software.amazon.awssdk.crt.http
Represents a single Client Request to be sent on a HTTP connection
HttpRequest(String, String) - Constructor for class software.amazon.awssdk.crt.http.HttpRequest
 
HttpRequest(String, String, HttpHeader[]) - Constructor for class software.amazon.awssdk.crt.http.HttpRequest
 
HttpStream - Class in software.amazon.awssdk.crt.http
An HttpStream represents a single Http Request/Response pair within a HttpClientConnection, and wraps the native resources from the aws-c-http library.
HttpStream(long) - Constructor for class software.amazon.awssdk.crt.http.HttpStream
 

I

incrementWindow(int) - Method in class software.amazon.awssdk.crt.http.HttpStream
Opens the Sliding Read/Write Window by the number of bytes passed as an argument for this HttpStream.
initLoggingFromSystemProperties() - Static method in class software.amazon.awssdk.crt.Log
Examines logging-related system properties and initializes the logging system if they have been properly set.
initLoggingToFile(Log.LogLevel, String) - Static method in class software.amazon.awssdk.crt.Log
 
initLoggingToStderr(Log.LogLevel) - Static method in class software.amazon.awssdk.crt.Log
 
initLoggingToStdout(Log.LogLevel) - Static method in class software.amazon.awssdk.crt.Log
 
initMTLS(String, String) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Sets the certificate/key pair that identifies this TLS host.
initMTLSFromPath(String, String) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Sets the path to the certificate that identifies this TLS host.
initMTLSPkcs12(String, String) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
OSX only - Initializes MTLS with PKCS12 file and password
isAlpnSupported() - Static method in class software.amazon.awssdk.crt.io.TlsContextOptions
Returns whether or not ALPN is supported on the current platform
isCipherPreferenceSupported(TlsCipherPreference) - Static method in class software.amazon.awssdk.crt.io.TlsContextOptions
Returns whether or not the current platform can be configured to a specific TlsCipherPreference.
isNativeResource() - Method in class software.amazon.awssdk.crt.CrtResource
Is this an actual native resource (true) or does it just track native resources and use the close/shutdown/referencing aspects (false)?
isNull() - Method in class software.amazon.awssdk.crt.CrtResource
Checks if this resource's native handle is NULL.
isSupported() - Method in enum software.amazon.awssdk.crt.io.TlsCipherPreference
Not all Cipher Preferences are supported on all Platforms due to differences in the underlying TLS Libraries.

L

Log - Class in software.amazon.awssdk.crt
Static wrapper around native and crt logging.
Log() - Constructor for class software.amazon.awssdk.crt.Log
 
log(Log.LogLevel, Log.LogSubject, String) - Static method in class software.amazon.awssdk.crt.Log
Logs a message at the specified log level.
Log.LogLevel - Enum in software.amazon.awssdk.crt
Enum that controls how detailed logging should be.
Log.LogSubject - Enum in software.amazon.awssdk.crt
 
logNativeResources() - Static method in class software.amazon.awssdk.crt.CrtResource
Debug method to log all of the currently un-closed CRTResource objects.

M

makeRequest(HttpRequest, CrtHttpStreamHandler) - Method in class software.amazon.awssdk.crt.http.HttpClientConnection
Schedules an HttpRequest on the Native EventLoop for this HttpClientConnection.
MqttClient - Class in software.amazon.awssdk.crt.mqtt
This class wraps aws-c-mqtt to provide the basic MQTT pub/sub functionalities via the AWS Common Runtime One MqttClient class is needed per application.
MqttClient() - Constructor for class software.amazon.awssdk.crt.mqtt.MqttClient
Creates a default MqttClient with no TLS and a ClientBootstrap constructed with default settings
MqttClient(ClientBootstrap) - Constructor for class software.amazon.awssdk.crt.mqtt.MqttClient
Creates an MqttClient with no TLS from the provided ClientBootstrap
MqttClient(ClientBootstrap, TlsContext) - Constructor for class software.amazon.awssdk.crt.mqtt.MqttClient
Creates an MqttClient from the provided ClientBootstrap and TlsContext
MqttClientConnection - Class in software.amazon.awssdk.crt.mqtt
This class wraps aws-c-mqtt to provide the basic MQTT pub/sub functionality via the AWS Common Runtime MqttClientConnection represents a single connection from one MqttClient to an MQTT service endpoint
MqttClientConnection(MqttClient) - Constructor for class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Constructs a new MqttClientConnection.
MqttClientConnection(MqttClient, MqttClientConnectionEvents) - Constructor for class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Constructs a new MqttClientConnection.
MqttClientConnectionEvents - Interface in software.amazon.awssdk.crt.mqtt
Interface used to receive connection events from the CRT
MqttException - Exception in software.amazon.awssdk.crt.mqtt
This exception will be thrown by any exceptional cases encountered within the JNI bindings to the AWS Common Runtime
MqttException(String) - Constructor for exception software.amazon.awssdk.crt.mqtt.MqttException
 
MqttException(int) - Constructor for exception software.amazon.awssdk.crt.mqtt.MqttException
 
MqttMessage - Class in software.amazon.awssdk.crt.mqtt
Represents a single message to be published or that was published to a connection
MqttMessage(String, byte[]) - Constructor for class software.amazon.awssdk.crt.mqtt.MqttMessage
Constructs a new payload

N

nativeMemory() - Static method in class software.amazon.awssdk.crt.CRT
 

O

onConnectionInterrupted(int) - Method in interface software.amazon.awssdk.crt.mqtt.MqttClientConnectionEvents
connection was lost (or disconnected), reconnect will be attempted automatically until disconnect() is called
onConnectionResumed(boolean) - Method in interface software.amazon.awssdk.crt.mqtt.MqttClientConnectionEvents
called on first successful connect, and whenever a reconnect succeeds
onFailure(Throwable) - Method in interface software.amazon.awssdk.crt.AsyncCallback
 
onResponseBody(HttpStream, byte[]) - Method in interface software.amazon.awssdk.crt.http.CrtHttpStreamHandler
Called when new Response Body bytes have been received.
onResponseComplete(HttpStream, int) - Method in interface software.amazon.awssdk.crt.http.CrtHttpStreamHandler
Called from Native when the Response has completed.
onResponseHeaders(HttpStream, int, int, HttpHeader[]) - Method in interface software.amazon.awssdk.crt.http.CrtHttpStreamHandler
Called from Native when new Http Headers have been received.
onResponseHeadersDone(HttpStream, int) - Method in interface software.amazon.awssdk.crt.http.CrtHttpStreamHandler
Called from Native once all HTTP Headers are processed.
onSuccess() - Method in interface software.amazon.awssdk.crt.AsyncCallback
 
onSuccess(Object) - Method in interface software.amazon.awssdk.crt.AsyncCallback
 
overrideDefaultTrustStore(String) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Helper function to provide a TlsContext-local trust store
overrideDefaultTrustStoreFromPath(String, String) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Helper function to provide a TlsContext-local trust store

P

PemUtils - Class in software.amazon.awssdk.crt.utils
Utility Class used for Cleaning Up and Sanity Checking PEM formatted Strings for Validity.
publish(MqttMessage, QualityOfService, boolean) - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Publishes a message to a topic

Q

QualityOfService - Enum in software.amazon.awssdk.crt.mqtt
Quality of Service associated with a publish action or subscription [MQTT-4.3].

R

releaseConnection(HttpClientConnection) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
Releases this HttpClientConnection back into the Connection Pool, and allows another Request to acquire this connection.
releaseConnectionPointer(long) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
 
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.CrtResource
Required override method that must begin the release process of the acquired native handle
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.http.HttpClientConnection
Releases this HttpClientConnection back into the Connection Pool, and allows another Request to acquire this connection.
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManager
Closes this Connection Pool and any pending Connection Acquisitions
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.http.HttpStream
Cleans up the stream's associated native handle
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.io.ClientBootstrap
Cleans up the client bootstrap's associated native handle
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.io.EventLoopGroup
Stops the event loop group's tasks and frees all resources associated with the the group.
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.io.HostResolver
Cleans up the resolver's associated native handle
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.io.SocketOptions
Frees the native resources for this set of socket options
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.io.TlsContext
Frees all native resources associated with the context.
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Frees the native resources associated with this instance
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.mqtt.MqttClient
Cleans up the native resources associated with this client.
releaseNativeHandle() - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Disconnects if necessary, and frees native resources associated with this connection
releaseReferences() - Method in class software.amazon.awssdk.crt.CrtResource
Decrements the ref counts for all resources referenced by this resource.
removeInvalidPemChars(String) - Static method in class software.amazon.awssdk.crt.utils.PemUtils
Removes characters that are not valid in PEM format (non-base64 chars).

S

safeSanityCheck(String, int, String) - Static method in class software.amazon.awssdk.crt.utils.PemUtils
Returns false if there is a problem with a PEM instead of throwing an Exception.
sanityCheck(String, int, String) - Static method in class software.amazon.awssdk.crt.utils.PemUtils
Performs various sanity checks on a PEM Formatted String, and should be tolerant of common minor mistakes in formatting.
sendRequestBody(HttpStream, ByteBuffer) - Method in interface software.amazon.awssdk.crt.http.CrtHttpStreamHandler
Called from Native when the Http Request has a Body (Eg PUT/POST requests).
setAlpnList(String) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Sets the ALPN protocol list that will be provided when a TLS connection starts
setAuthorizationPassword(String) - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Sets the password to use for authorization; only applicable to basic authentication
setAuthorizationType(HttpProxyOptions.HttpProxyAuthorizationType) - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Sets the proxy authorization type
setAuthorizationUsername(String) - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Sets the username to use for authorization; only applicable to basic authentication
setCipherPreference(TlsCipherPreference) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Sets the TLS Cipher Preferences that can be negotiated and used during the TLS Connection.
setHost(String) - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Sets the proxy host to connect through
setLogin(String, String) - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Sets the login credentials for the connection.
setMinimumTlsVersion(TlsContextOptions.TlsVersions) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Sets the minimum acceptable TLS version that the TlsContext will allow.
setPort(int) - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Sets the proxy port to connect through
setTlsContext(TlsContext) - Method in class software.amazon.awssdk.crt.http.HttpProxyOptions
Sets the tls context for the proxy connection
setVerifyPeer(boolean) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
Set whether or not the peer should be verified.
setWill(MqttMessage, QualityOfService, boolean) - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Sets the last will and testament message to be delivered to a topic when this client disconnects
SocketOptions - Class in software.amazon.awssdk.crt.io
This class wraps the aws_socket_options from aws-c-io to provide access to TCP/UDP socket configuration in the AWS Common Runtime.
SocketOptions() - Constructor for class software.amazon.awssdk.crt.io.SocketOptions
Creates a new set of socket options
SocketOptions.SocketDomain - Enum in software.amazon.awssdk.crt.io
Socket communications domain
SocketOptions.SocketType - Enum in software.amazon.awssdk.crt.io
Socket type
software.amazon.awssdk.crt - package software.amazon.awssdk.crt
 
software.amazon.awssdk.crt.http - package software.amazon.awssdk.crt.http
 
software.amazon.awssdk.crt.io - package software.amazon.awssdk.crt.io
 
software.amazon.awssdk.crt.mqtt - package software.amazon.awssdk.crt.mqtt
 
software.amazon.awssdk.crt.utils - package software.amazon.awssdk.crt.utils
 
subscribe(String, QualityOfService, Consumer<MqttMessage>) - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Subscribes to a topic

T

TlsCipherPreference - Enum in software.amazon.awssdk.crt.io
A TlsCipherPreference represents a hardcoded ordered list of TLS Ciphers to use when negotiating a TLS Connection.
TlsContext - Class in software.amazon.awssdk.crt.io
This class wraps the aws_tls_context from aws-c-io to provide access to TLS configuration contexts in the AWS Common Runtime.
TlsContext(TlsContextOptions) - Constructor for class software.amazon.awssdk.crt.io.TlsContext
Creates a new Client TlsContext.
TlsContext() - Constructor for class software.amazon.awssdk.crt.io.TlsContext
Creates a new Client TlsContext.
TlsContextOptions - Class in software.amazon.awssdk.crt.io
This class wraps the aws_tls_connection_options from aws-c-io to provide access to TLS configuration contexts in the AWS Common Runtime.
TlsContextOptions.TlsVersions - Enum in software.amazon.awssdk.crt.io
 
toString() - Method in class software.amazon.awssdk.crt.http.HttpHeader
 
transferData(ByteBuffer, ByteBuffer) - Static method in class software.amazon.awssdk.crt.utils.ByteBufferUtils
Transfers as much data as possible from an input ByteBuffer to an output ByteBuffer

U

unsubscribe(String) - Method in class software.amazon.awssdk.crt.mqtt.MqttClientConnection
Unsubscribes from a topic

V

valueOf(String) - Static method in enum software.amazon.awssdk.crt.http.HttpHeaderBlock
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.http.HttpProxyOptions.HttpProxyAuthorizationType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.io.SocketOptions.SocketDomain
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.io.SocketOptions.SocketType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.io.TlsCipherPreference
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.io.TlsContextOptions.TlsVersions
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.Log.LogLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.Log.LogSubject
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum software.amazon.awssdk.crt.mqtt.QualityOfService
Returns the enum constant of this type with the specified name.
values() - Static method in enum software.amazon.awssdk.crt.http.HttpHeaderBlock
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.http.HttpProxyOptions.HttpProxyAuthorizationType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.io.SocketOptions.SocketDomain
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.io.SocketOptions.SocketType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.io.TlsCipherPreference
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.io.TlsContextOptions.TlsVersions
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.Log.LogLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.Log.LogSubject
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum software.amazon.awssdk.crt.mqtt.QualityOfService
Returns an array containing the constants of this enum type, in the order they are declared.

W

waitForNoResources() - Static method in class software.amazon.awssdk.crt.CrtResource
Debug/test method to wait for the CRTResource count to drop to zero.
withAlpnList(String) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
 
withBufferSize(int) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the IO buffer size to use for connections in the connection pool
withCipherPreference(TlsCipherPreference) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
.with() methods
withClientBootstrap(ClientBootstrap) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the client bootstrap instance to use to create the pool's connections
withMaxConnections(int) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the maximum number of connections allowed in the connection pool
withMinimumTlsVersion(TlsContextOptions.TlsVersions) - Method in class software.amazon.awssdk.crt.io.TlsContextOptions
 
withPort(int) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the port to connect to for connections in the connection pool
withProxyOptions(HttpProxyOptions) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the proxy options for connections in the connection pool
withSocketOptions(SocketOptions) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the socket options to use for connections in the connection pool
withTlsContext(TlsContext) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the tls context to use for connections in the connection pool
withUri(URI) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the URI to use for connections in the connection pool
withWindowSize(int) - Method in class software.amazon.awssdk.crt.http.HttpClientConnectionManagerOptions
Sets the IO channel window size to use for connections in the connection pool
wrapFuture(CompletableFuture<T>, T) - Static method in interface software.amazon.awssdk.crt.AsyncCallback
 
A B C D E G H I L M N O P Q R S T U V W 
Skip navigation links

Copyright © 2019. All rights reserved.