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

com.google.api.gax.rpc.ServerStreamingCallable Maven / Gradle / Ivy

/*
 * Copyright 2017 Google LLC
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *     * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *     * Neither the name of Google LLC nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package com.google.api.gax.rpc;

import com.google.api.core.BetaApi;
import java.util.Iterator;
import java.util.List;

/**
 * A ServerStreamingCallable is an immutable object which is capable of making RPC calls to server
 * streaming API methods. Not all transports support streaming.
 *
 * 

It is considered advanced usage for a user to create a ServerStreamingCallable themselves. * This class is intended to be created by a generated client class, and configured by instances of * StreamingCallSettings.Builder which are exposed through the client settings class. */ @BetaApi("The surface for streaming is not stable yet and may change in the future.") public abstract class ServerStreamingCallable { private final FirstElementCallable firstCallable; private final SpoolingCallable spoolingCallable; protected ServerStreamingCallable() { firstCallable = new FirstElementCallable<>(this); spoolingCallable = new SpoolingCallable<>(this); } /** * Construct a {@link UnaryCallable} that will yield the first item in the stream and cancel it. * If the stream is empty, the item will be null. * *

Example usage: * *

{@code
   * StreamingCallable streamingCallable = // ..
   * String theResult = streamingCallable.first().call(request);
   * ApiFuture theResult = streamingCallable.first().futureCall(request);
   * }
* * @return The {@link UnaryCallable}. */ public UnaryCallable first() { return firstCallable; } /** * Construct a {@link UnaryCallable} that will buffer the entire stream into memory before * completing. If the stream is empty, then the list will be empty. * *

Example usage: * *

{@code
   * StreamingCallable streamingCallable = // ..
   * List theResult = streamingCallable.all().call(request);
   * ApiFuture> theResult = streamingCallable.all().futureCall(request);
   * }
* * @return The {@link UnaryCallable}. */ public UnaryCallable> all() { return spoolingCallable; } /** * Conduct a iteration server streaming call. * *

This returns a live stream that must either be fully consumed or cancelled. Example usage: * *

{@code
   * StreamingCallable streamingCallable = // ..
   * ServerStream stream = streamingCallable.call(request)
   * for (String s : stream) {
   *   if ("needle".equals(s)) {
   *     // Cancelling the stream will cause `hasNext()` to return false on the next iteration,
   *     // naturally breaking the loop.
   *     stream.cancel();
   *   }
   * }
   * List theResult = streamingCallable.all().call(request);
   * ApiFuture> theResult = streamingCallable.all().futureCall(request);
   * }
* * @param request request * @return {@link ServerStream} which is used for iterating the responses. */ public ServerStream call(RequestT request) { return call(request, (ApiCallContext) null); } /** * Conduct a server streaming call with the given {@link ApiCallContext}. * *

This returns a live stream that must either be fully consumed or cancelled. * * @param request request * @param context the context * @return {@link ServerStream} which is used for iterating the responses. */ public ServerStream call(RequestT request, ApiCallContext context) { ServerStream stream = new ServerStream<>(); call(request, stream.observer(), context); return stream; } /** * Conduct a server streaming call with the given {@link ApiCallContext}. * * @param request request * @param responseObserver {@link ResponseObserver} to observe the streaming responses * @param context {@link ApiCallContext} to provide context information for the RPC call. */ public abstract void call( RequestT request, ResponseObserver responseObserver, ApiCallContext context); /** * Conduct a server streaming call * * @param request request * @param responseObserver {@link ResponseObserver} to observe the streaming responses */ public void call(RequestT request, ResponseObserver responseObserver) { call(request, responseObserver, null); } /** * Conduct a server streaming call with the given {@link ApiCallContext}. * * @param request request * @param responseObserver {@link ApiStreamObserver} to observe the streaming responses * @param context {@link ApiCallContext} to provide context information for the RPC call. * @deprecated Please use the {@link ResponseObserver} variant instead. */ @Deprecated public void serverStreamingCall( RequestT request, final ApiStreamObserver responseObserver, ApiCallContext context) { call(request, new ApiStreamObserverAdapter<>(responseObserver), context); } /** * Conduct a server streaming call * * @param request request * @param responseObserver {@link ApiStreamObserver} to observe the streaming responses * @deprecated Please use the {@link ResponseObserver} variant instead. */ @Deprecated public void serverStreamingCall(RequestT request, ApiStreamObserver responseObserver) { serverStreamingCall(request, responseObserver, null); } /** * Conduct an iteration server streaming call * * @param request request * @param context context * @return {@link Iterator} which is used for iterating the responses. * @deprecated Please use call() instead. */ @Deprecated public Iterator blockingServerStreamingCall(RequestT request, ApiCallContext context) { return call(request, context).iterator(); } /** * Conduct a iteration server streaming call * * @param request request * @return {@link Iterator} which is used for iterating the responses. * @deprecated Please use call() instead. */ @Deprecated public Iterator blockingServerStreamingCall(RequestT request) { return blockingServerStreamingCall(request, null); } /** * Returns a new {@code ServerStreamingCallable} with an {@link ApiCallContext} that is used as a * default when none is supplied in individual calls. * * @param defaultCallContext the default {@link ApiCallContext}. */ public ServerStreamingCallable withDefaultCallContext( final ApiCallContext defaultCallContext) { return new ServerStreamingCallable() { @Override public void call( RequestT request, ResponseObserver responseObserver, ApiCallContext thisCallContext) { ServerStreamingCallable.this.call( request, responseObserver, defaultCallContext.merge(thisCallContext)); } }; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy