trait SubscriberClient extends Subscriber with SubscriberClientPowerApi with AkkaGrpcClient

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SubscriberClient
  2. AkkaGrpcClient
  3. SubscriberClientPowerApi
  4. Subscriber
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def acknowledge(in: AcknowledgeRequest): Future[Empty]

    Acknowledges the messages associated with the ack_ids in the AcknowledgeRequest.

    Acknowledges the messages associated with the ack_ids in the AcknowledgeRequest. The Pub/Sub system can remove the relevant messages from the subscription. Acknowledging a message whose ack deadline has expired may succeed, but such a message may be redelivered later. Acknowledging a message more than once will not result in an error.

    Definition Classes
    Subscriber
  2. abstract def close(): Future[Done]
    Definition Classes
    AkkaGrpcClient
  3. abstract def closed: Future[Done]
    Definition Classes
    AkkaGrpcClient
  4. abstract def createSnapshot(in: CreateSnapshotRequest): Future[Snapshot]

    Creates a snapshot from the requested subscription.

    Creates a snapshot from the requested subscription. Snapshots are used in <a href="https://cloud.google.com/pubsub/docs/replay-overview">Seek</a> operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot. <br><br>If the snapshot already exists, returns ALREADY_EXISTS. If the requested subscription doesn't exist, returns NOT_FOUND. If the backlog in the subscription is too old -- and the resulting snapshot would expire in less than 1 hour -- then FAILED_PRECONDITION is returned. See also the Snapshot.expire_time field. If the name is not provided in the request, the server will assign a random name for this snapshot on the same project as the subscription, conforming to the [resource name format](https://cloud.google.com/pubsub/docs/admin#resource_names). The generated name is populated in the returned Snapshot object. Note that for REST API requests, you must specify a name in the request.

    Definition Classes
    Subscriber
  5. abstract def createSubscription(in: Subscription): Future[Subscription]

    Creates a subscription to a given topic.

    Creates a subscription to a given topic. See the <a href="https://cloud.google.com/pubsub/docs/admin#resource_names"> resource name rules</a>. If the subscription already exists, returns ALREADY_EXISTS. If the corresponding topic doesn't exist, returns NOT_FOUND. If the name is not provided in the request, the server will assign a random name for this subscription on the same project as the topic, conforming to the [resource name format](https://cloud.google.com/pubsub/docs/admin#resource_names). The generated name is populated in the returned Subscription object. Note that for REST API requests, you must specify a name in the request.

    Definition Classes
    Subscriber
  6. abstract def deleteSnapshot(in: DeleteSnapshotRequest): Future[Empty]

    Removes an existing snapshot.

    Removes an existing snapshot. Snapshots are used in <a href="https://cloud.google.com/pubsub/docs/replay-overview">Seek</a> operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot.<br><br> When the snapshot is deleted, all messages retained in the snapshot are immediately dropped. After a snapshot is deleted, a new one may be created with the same name, but the new one has no association with the old snapshot or its subscription, unless the same subscription is specified.

    Definition Classes
    Subscriber
  7. abstract def deleteSubscription(in: DeleteSubscriptionRequest): Future[Empty]

    Deletes an existing subscription.

    Deletes an existing subscription. All messages retained in the subscription are immediately dropped. Calls to Pull after deletion will return NOT_FOUND. After a subscription is deleted, a new one may be created with the same name, but the new one has no association with the old subscription or its topic unless the same topic is specified.

    Definition Classes
    Subscriber
  8. abstract def getSnapshot(in: GetSnapshotRequest): Future[Snapshot]

    Gets the configuration details of a snapshot.

    Gets the configuration details of a snapshot. Snapshots are used in <a href="https://cloud.google.com/pubsub/docs/replay-overview">Seek</a> operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot.

    Definition Classes
    Subscriber
  9. abstract def getSubscription(in: GetSubscriptionRequest): Future[Subscription]

    Gets the configuration details of a subscription.

    Gets the configuration details of a subscription.

    Definition Classes
    Subscriber
  10. abstract def listSnapshots(in: ListSnapshotsRequest): Future[ListSnapshotsResponse]

    Lists the existing snapshots.

    Lists the existing snapshots. Snapshots are used in <a href="https://cloud.google.com/pubsub/docs/replay-overview">Seek</a> operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot.

    Definition Classes
    Subscriber
  11. abstract def listSubscriptions(in: ListSubscriptionsRequest): Future[ListSubscriptionsResponse]

    Lists matching subscriptions.

    Lists matching subscriptions.

    Definition Classes
    Subscriber
  12. abstract def modifyAckDeadline(in: ModifyAckDeadlineRequest): Future[Empty]

    Modifies the ack deadline for a specific message.

    Modifies the ack deadline for a specific message. This method is useful to indicate that more time is needed to process a message by the subscriber, or to make the message available for redelivery if the processing was interrupted. Note that this does not modify the subscription-level ackDeadlineSeconds used for subsequent messages.

    Definition Classes
    Subscriber
  13. abstract def modifyPushConfig(in: ModifyPushConfigRequest): Future[Empty]

    Modifies the PushConfig for a specified subscription.

    Modifies the PushConfig for a specified subscription. This may be used to change a push subscription to a pull one (signified by an empty PushConfig) or vice versa, or change the endpoint URL and other attributes of a push subscription. Messages will accumulate for delivery continuously through the call regardless of changes to the PushConfig.

    Definition Classes
    Subscriber
  14. abstract def pull(in: PullRequest): Future[PullResponse]

    Pulls messages from the server.

    Pulls messages from the server. The server may return UNAVAILABLE if there are too many concurrent pull requests pending for the given subscription.

    Definition Classes
    Subscriber
  15. abstract def seek(in: SeekRequest): Future[SeekResponse]

    Seeks an existing subscription to a point in time or to a given snapshot, whichever is provided in the request.

    Seeks an existing subscription to a point in time or to a given snapshot, whichever is provided in the request. Snapshots are used in <a href="https://cloud.google.com/pubsub/docs/replay-overview">Seek</a> operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot. Note that both the subscription and the snapshot must be on the same topic.

    Definition Classes
    Subscriber
  16. abstract def streamingPull(in: Source[StreamingPullRequest, NotUsed]): Source[StreamingPullResponse, NotUsed]

    Establishes a stream with the server, which sends messages down to the client.

    Establishes a stream with the server, which sends messages down to the client. The client streams acknowledgements and ack deadline modifications back to the server. The server will close the stream and return the status on any error. The server may close the stream with status UNAVAILABLE to reassign server-side resources, in which case, the client should re-establish the stream. Flow control can be achieved by configuring the underlying RPC channel.

    Definition Classes
    Subscriber
  17. abstract def updateSnapshot(in: UpdateSnapshotRequest): Future[Snapshot]

    Updates an existing snapshot.

    Updates an existing snapshot. Snapshots are used in <a href="https://cloud.google.com/pubsub/docs/replay-overview">Seek</a> operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot.

    Definition Classes
    Subscriber
  18. abstract def updateSubscription(in: UpdateSubscriptionRequest): Future[Subscription]

    Updates an existing subscription.

    Updates an existing subscription. Note that certain properties of a subscription, such as its topic, are not modifiable.

    Definition Classes
    Subscriber

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def acknowledge(): SingleResponseRequestBuilder[AcknowledgeRequest, Empty]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer acknowledge(com.google.pubsub.v1.pubsub.AcknowledgeRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. def createSnapshot(): SingleResponseRequestBuilder[CreateSnapshotRequest, Snapshot]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer createSnapshot(com.google.pubsub.v1.pubsub.CreateSnapshotRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  8. def createSubscription(): SingleResponseRequestBuilder[Subscription, Subscription]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer createSubscription(com.google.pubsub.v1.pubsub.Subscription) if possible.

    Definition Classes
    SubscriberClientPowerApi
  9. def deleteSnapshot(): SingleResponseRequestBuilder[DeleteSnapshotRequest, Empty]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer deleteSnapshot(com.google.pubsub.v1.pubsub.DeleteSnapshotRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  10. def deleteSubscription(): SingleResponseRequestBuilder[DeleteSubscriptionRequest, Empty]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer deleteSubscription(com.google.pubsub.v1.pubsub.DeleteSubscriptionRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def getSnapshot(): SingleResponseRequestBuilder[GetSnapshotRequest, Snapshot]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer getSnapshot(com.google.pubsub.v1.pubsub.GetSnapshotRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  15. def getSubscription(): SingleResponseRequestBuilder[GetSubscriptionRequest, Subscription]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer getSubscription(com.google.pubsub.v1.pubsub.GetSubscriptionRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def listSnapshots(): SingleResponseRequestBuilder[ListSnapshotsRequest, ListSnapshotsResponse]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer listSnapshots(com.google.pubsub.v1.pubsub.ListSnapshotsRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  19. def listSubscriptions(): SingleResponseRequestBuilder[ListSubscriptionsRequest, ListSubscriptionsResponse]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer listSubscriptions(com.google.pubsub.v1.pubsub.ListSubscriptionsRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  20. def modifyAckDeadline(): SingleResponseRequestBuilder[ModifyAckDeadlineRequest, Empty]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer modifyAckDeadline(com.google.pubsub.v1.pubsub.ModifyAckDeadlineRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  21. def modifyPushConfig(): SingleResponseRequestBuilder[ModifyPushConfigRequest, Empty]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer modifyPushConfig(com.google.pubsub.v1.pubsub.ModifyPushConfigRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def pull(): SingleResponseRequestBuilder[PullRequest, PullResponse]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer pull(com.google.pubsub.v1.pubsub.PullRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  26. def seek(): SingleResponseRequestBuilder[SeekRequest, SeekResponse]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer seek(com.google.pubsub.v1.pubsub.SeekRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  27. def streamingPull(): StreamResponseRequestBuilder[Source[StreamingPullRequest, NotUsed], StreamingPullResponse]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer streamingPull(akka.stream.scaladsl.Source[com.google.pubsub.v1.pubsub.StreamingPullRequest, akka.NotUsed]) if possible.

    Definition Classes
    SubscriberClientPowerApi
  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def updateSnapshot(): SingleResponseRequestBuilder[UpdateSnapshotRequest, Snapshot]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer updateSnapshot(com.google.pubsub.v1.pubsub.UpdateSnapshotRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  31. def updateSubscription(): SingleResponseRequestBuilder[UpdateSubscriptionRequest, Subscription]

    Lower level "lifted" version of the method, giving access to request metadata etc.

    Lower level "lifted" version of the method, giving access to request metadata etc. prefer updateSubscription(com.google.pubsub.v1.pubsub.UpdateSubscriptionRequest) if possible.

    Definition Classes
    SubscriberClientPowerApi
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AkkaGrpcClient

Inherited from SubscriberClientPowerApi

Inherited from Subscriber

Inherited from AnyRef

Inherited from Any

Ungrouped