All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.bmc.streaming.StreamAsyncClient Maven / Gradle / Ivy

Go to download

This project contains the SDK distribution used for Oracle Cloud Infrastructure, and all the dependencies that can be shaded. It also has Maven dependencies that cannot be shaded. Therefore, use this module to depend on the shaded distribution via Maven -- it will shade everything that can be shaded, and automatically pull in the other dependencies.

There is a newer version: 3.55.2
Show newest version
/**
 * Copyright (c) 2016, 2024, Oracle and/or its affiliates.  All rights reserved.
 * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
 */
package com.oracle.bmc.streaming;

import com.oracle.bmc.util.internal.Validate;
import com.oracle.bmc.streaming.requests.*;
import com.oracle.bmc.streaming.responses.*;

import java.util.Objects;

/**
 * Async client implementation for Stream service. 
* There are two ways to use async client: 1. Use AsyncHandler: using AsyncHandler, if the response * to the call is an {@link java.io.InputStream}, like getObject Api in object storage service, * developers need to process the stream in AsyncHandler, and not anywhere else, because the stream * will be closed right after the AsyncHandler is invoked.
* 2. Use Java Future: using Java Future, developers need to close the stream after they are done * with the Java Future.
* Accessing the result should be done in a mutually exclusive manner, either through the Future or * the AsyncHandler, but not both. If the Future is used, the caller should pass in null as the * AsyncHandler. If the AsyncHandler is used, it is still safe to use the Future to determine * whether or not the request was completed via Future.isDone/isCancelled.
* Please refer to * https://github.com/oracle/oci-java-sdk/blob/master/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java */ @jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20180418") public class StreamAsyncClient extends com.oracle.bmc.http.internal.BaseAsyncClient implements StreamAsync { /** Service instance for Stream. */ public static final com.oracle.bmc.Service SERVICE = com.oracle.bmc.Services.serviceBuilder() .serviceName("STREAM") .serviceEndpointPrefix("streams") .serviceEndpointTemplate("https://streaming.{region}.oci.{secondLevelDomain}") .build(); private static final org.slf4j.Logger LOG = org.slf4j.LoggerFactory.getLogger(StreamAsyncClient.class); StreamAsyncClient( com.oracle.bmc.common.ClientBuilderBase builder, com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider) { super(builder, authenticationDetailsProvider); } /** * Create a builder for this client. * * @return builder */ public static com.oracle.bmc.streaming.StreamAsyncClientBuilder builder() { return new com.oracle.bmc.streaming.StreamAsyncClientBuilder(SERVICE); } @Override public java.util.concurrent.Future consumerCommit( ConsumerCommitRequest request, final com.oracle.bmc.responses.AsyncHandler< ConsumerCommitRequest, ConsumerCommitResponse> handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Objects.requireNonNull(request.getCursor(), "cursor is required"); return clientCall(request, ConsumerCommitResponse::builder) .logger(LOG, "consumerCommit") .serviceDetails( "Stream", "ConsumerCommit", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Group/ConsumerCommit") .method(com.oracle.bmc.http.client.Method.POST) .requestBuilder(ConsumerCommitRequest::builder) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("commit") .appendQueryParam("cursor", request.getCursor()) .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .handleBody( com.oracle.bmc.streaming.model.Cursor.class, ConsumerCommitResponse.Builder::cursor) .handleResponseHeaderString( "opc-request-id", ConsumerCommitResponse.Builder::opcRequestId) .callAsync(handler); } @Override public java.util.concurrent.Future consumerHeartbeat( ConsumerHeartbeatRequest request, final com.oracle.bmc.responses.AsyncHandler< ConsumerHeartbeatRequest, ConsumerHeartbeatResponse> handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Objects.requireNonNull(request.getCursor(), "cursor is required"); return clientCall(request, ConsumerHeartbeatResponse::builder) .logger(LOG, "consumerHeartbeat") .serviceDetails( "Stream", "ConsumerHeartbeat", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Group/ConsumerHeartbeat") .method(com.oracle.bmc.http.client.Method.POST) .requestBuilder(ConsumerHeartbeatRequest::builder) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("heartbeat") .appendQueryParam("cursor", request.getCursor()) .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .handleBody( com.oracle.bmc.streaming.model.Cursor.class, ConsumerHeartbeatResponse.Builder::cursor) .handleResponseHeaderString( "opc-request-id", ConsumerHeartbeatResponse.Builder::opcRequestId) .callAsync(handler); } @Override public java.util.concurrent.Future createCursor( CreateCursorRequest request, final com.oracle.bmc.responses.AsyncHandler handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Objects.requireNonNull(request.getCreateCursorDetails(), "createCursorDetails is required"); return clientCall(request, CreateCursorResponse::builder) .logger(LOG, "createCursor") .serviceDetails( "Stream", "CreateCursor", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Cursor/CreateCursor") .method(com.oracle.bmc.http.client.Method.POST) .requestBuilder(CreateCursorRequest::builder) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("cursors") .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .hasBody() .handleBody( com.oracle.bmc.streaming.model.Cursor.class, CreateCursorResponse.Builder::cursor) .handleResponseHeaderString( "opc-request-id", CreateCursorResponse.Builder::opcRequestId) .callAsync(handler); } @Override public java.util.concurrent.Future createGroupCursor( CreateGroupCursorRequest request, final com.oracle.bmc.responses.AsyncHandler< CreateGroupCursorRequest, CreateGroupCursorResponse> handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Objects.requireNonNull( request.getCreateGroupCursorDetails(), "createGroupCursorDetails is required"); return clientCall(request, CreateGroupCursorResponse::builder) .logger(LOG, "createGroupCursor") .serviceDetails( "Stream", "CreateGroupCursor", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Cursor/CreateGroupCursor") .method(com.oracle.bmc.http.client.Method.POST) .requestBuilder(CreateGroupCursorRequest::builder) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("groupCursors") .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .hasBody() .handleBody( com.oracle.bmc.streaming.model.Cursor.class, CreateGroupCursorResponse.Builder::cursor) .handleResponseHeaderString( "opc-request-id", CreateGroupCursorResponse.Builder::opcRequestId) .callAsync(handler); } @Override public java.util.concurrent.Future getGroup( GetGroupRequest request, final com.oracle.bmc.responses.AsyncHandler handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Validate.notBlank(request.getGroupName(), "groupName must not be blank"); return clientCall(request, GetGroupResponse::builder) .logger(LOG, "getGroup") .serviceDetails( "Stream", "GetGroup", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Group/GetGroup") .method(com.oracle.bmc.http.client.Method.GET) .requestBuilder(GetGroupRequest::builder) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("groups") .appendPathParam(request.getGroupName()) .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .handleBody( com.oracle.bmc.streaming.model.Group.class, GetGroupResponse.Builder::group) .handleResponseHeaderString( "opc-request-id", GetGroupResponse.Builder::opcRequestId) .callAsync(handler); } @Override public java.util.concurrent.Future getMessages( GetMessagesRequest request, final com.oracle.bmc.responses.AsyncHandler handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Objects.requireNonNull(request.getCursor(), "cursor is required"); return clientCall(request, GetMessagesResponse::builder) .logger(LOG, "getMessages") .serviceDetails( "Stream", "GetMessages", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Message/GetMessages") .method(com.oracle.bmc.http.client.Method.GET) .requestBuilder(GetMessagesRequest::builder) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("messages") .appendQueryParam("cursor", request.getCursor()) .appendQueryParam("limit", request.getLimit()) .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .handleBodyList( com.oracle.bmc.streaming.model.Message.class, GetMessagesResponse.Builder::items) .handleResponseHeaderString( "opc-next-cursor", GetMessagesResponse.Builder::opcNextCursor) .handleResponseHeaderString( "opc-request-id", GetMessagesResponse.Builder::opcRequestId) .callAsync(handler); } @Override public java.util.concurrent.Future putMessages( PutMessagesRequest request, final com.oracle.bmc.responses.AsyncHandler handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Objects.requireNonNull(request.getPutMessagesDetails(), "putMessagesDetails is required"); return clientCall(request, PutMessagesResponse::builder) .logger(LOG, "putMessages") .serviceDetails( "Stream", "PutMessages", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Message/PutMessages") .method(com.oracle.bmc.http.client.Method.POST) .requestBuilder(PutMessagesRequest::builder) .obmcsSigningStrategy(com.oracle.bmc.http.signing.SigningStrategy.EXCLUDE_BODY) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("messages") .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .hasBody() .handleBody( com.oracle.bmc.streaming.model.PutMessagesResult.class, PutMessagesResponse.Builder::putMessagesResult) .handleResponseHeaderString( "opc-request-id", PutMessagesResponse.Builder::opcRequestId) .callAsync(handler); } @Override public java.util.concurrent.Future updateGroup( UpdateGroupRequest request, final com.oracle.bmc.responses.AsyncHandler handler) { Validate.notBlank(request.getStreamId(), "streamId must not be blank"); Validate.notBlank(request.getGroupName(), "groupName must not be blank"); Objects.requireNonNull(request.getUpdateGroupDetails(), "updateGroupDetails is required"); return clientCall(request, UpdateGroupResponse::builder) .logger(LOG, "updateGroup") .serviceDetails( "Stream", "UpdateGroup", "https://docs.oracle.com/iaas/api/#/en/streaming/20180418/Group/UpdateGroup") .method(com.oracle.bmc.http.client.Method.PUT) .requestBuilder(UpdateGroupRequest::builder) .basePath("/20180418") .appendPathParam("streams") .appendPathParam(request.getStreamId()) .appendPathParam("groups") .appendPathParam(request.getGroupName()) .accept("application/json") .appendHeader("opc-request-id", request.getOpcRequestId()) .hasBody() .handleResponseHeaderString( "opc-request-id", UpdateGroupResponse.Builder::opcRequestId) .callAsync(handler); } /** * Create a new client instance. * * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) * @deprecated Use the {@link #builder() builder} instead. */ @Deprecated public StreamAsyncClient( com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider) { this(builder(), authenticationDetailsProvider); } /** * Create a new client instance. * * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) * @param configuration {@link Builder#configuration} * @deprecated Use the {@link #builder() builder} instead. */ @Deprecated public StreamAsyncClient( com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider, com.oracle.bmc.ClientConfiguration configuration) { this(builder().configuration(configuration), authenticationDetailsProvider); } /** * Create a new client instance. * * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) * @param configuration {@link Builder#configuration} * @param clientConfigurator {@link Builder#clientConfigurator} * @deprecated Use the {@link #builder() builder} instead. */ @Deprecated public StreamAsyncClient( com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider, com.oracle.bmc.ClientConfiguration configuration, com.oracle.bmc.http.ClientConfigurator clientConfigurator) { this( builder().configuration(configuration).clientConfigurator(clientConfigurator), authenticationDetailsProvider); } /** * Create a new client instance. * * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) * @param configuration {@link Builder#configuration} * @param clientConfigurator {@link Builder#clientConfigurator} * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} * @deprecated Use the {@link #builder() builder} instead. */ @Deprecated public StreamAsyncClient( com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, com.oracle.bmc.ClientConfiguration configuration, com.oracle.bmc.http.ClientConfigurator clientConfigurator, com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory) { this( builder() .configuration(configuration) .clientConfigurator(clientConfigurator) .requestSignerFactory(defaultRequestSignerFactory), authenticationDetailsProvider); } /** * Create a new client instance. * * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) * @param configuration {@link Builder#configuration} * @param clientConfigurator {@link Builder#clientConfigurator} * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} * @deprecated Use the {@link #builder() builder} instead. */ @Deprecated public StreamAsyncClient( com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, com.oracle.bmc.ClientConfiguration configuration, com.oracle.bmc.http.ClientConfigurator clientConfigurator, com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, java.util.List additionalClientConfigurators) { this( builder() .configuration(configuration) .clientConfigurator(clientConfigurator) .requestSignerFactory(defaultRequestSignerFactory) .additionalClientConfigurators(additionalClientConfigurators), authenticationDetailsProvider); } /** * Create a new client instance. * * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) * @param configuration {@link Builder#configuration} * @param clientConfigurator {@link Builder#clientConfigurator} * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} * @param endpoint {@link Builder#endpoint} * @deprecated Use the {@link #builder() builder} instead. */ @Deprecated public StreamAsyncClient( com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, com.oracle.bmc.ClientConfiguration configuration, com.oracle.bmc.http.ClientConfigurator clientConfigurator, com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, java.util.List additionalClientConfigurators, String endpoint) { this( builder() .configuration(configuration) .clientConfigurator(clientConfigurator) .requestSignerFactory(defaultRequestSignerFactory) .additionalClientConfigurators(additionalClientConfigurators) .endpoint(endpoint), authenticationDetailsProvider); } /** * Create a new client instance. * * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) * @param configuration {@link Builder#configuration} * @param clientConfigurator {@link Builder#clientConfigurator} * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} * @param endpoint {@link Builder#endpoint} * @param signingStrategyRequestSignerFactories {@link * Builder#signingStrategyRequestSignerFactories} * @deprecated Use the {@link #builder() builder} instead. */ @Deprecated public StreamAsyncClient( com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, com.oracle.bmc.ClientConfiguration configuration, com.oracle.bmc.http.ClientConfigurator clientConfigurator, com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, java.util.Map< com.oracle.bmc.http.signing.SigningStrategy, com.oracle.bmc.http.signing.RequestSignerFactory> signingStrategyRequestSignerFactories, java.util.List additionalClientConfigurators, String endpoint) { this( builder() .configuration(configuration) .clientConfigurator(clientConfigurator) .requestSignerFactory(defaultRequestSignerFactory) .additionalClientConfigurators(additionalClientConfigurators) .endpoint(endpoint) .signingStrategyRequestSignerFactories( signingStrategyRequestSignerFactories), authenticationDetailsProvider); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy