c

com.couchbase.client.scala.manager.eventing

AsyncEventingFunctionManager

class AsyncEventingFunctionManager extends AnyRef

This interface allows managing eventing functions.

Note that an eventing function exists in a particular scope. This interface is for working with eventing functions in the admin ("*.*") scope. For working with eventing functions in different scopes, see ScopedEventingFunctionManager, accessed from com.couchbase.client.scala.Scope.eventingFunctions

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AsyncEventingFunctionManager
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AsyncEventingFunctionManager(env: ClusterEnvironment, couchbaseOps: CoreCouchbaseOps)(implicit ec: ExecutionContext)

Value Members

  1. def deployFunction(name: String, timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[Unit]

    Deploy an eventing function in the admin scope ('*.*').

    Deploy an eventing function in the admin scope ('*.*').

    name

    the name of the eventing function to fetch.

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

  2. def dropFunction(name: String, timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[Unit]

    Drop an eventing function from the admin scope ('*.*').

    Drop an eventing function from the admin scope ('*.*').

    name

    the name of the eventing function to fetch.

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

  3. def functionsStatus(timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[EventingStatus]

    Get the status of an eventing function in the admin scope ('*.*').

    Get the status of an eventing function in the admin scope ('*.*').

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

    returns

    an EventingStatus containing the status of the eventing function.

  4. def getAllFunctions(timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[Seq[EventingFunction]]

    Get all eventing functions from the admin scope ('*.*').

    Get all eventing functions from the admin scope ('*.*').

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

  5. def getFunction(name: String, timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[EventingFunction]

    Fetch an eventing function from the admin scope ('*.*').

    Fetch an eventing function from the admin scope ('*.*').

    name

    the name of the eventing function to fetch.

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

  6. def pauseFunction(name: String, timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[Unit]

    Pause an eventing function in the admin scope ('*.*').

    Pause an eventing function in the admin scope ('*.*').

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

  7. def resumeFunction(name: String, timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[Unit]

    Resume a paused eventing function in the admin scope ('*.*').

    Resume a paused eventing function in the admin scope ('*.*').

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

  8. def undeployFunction(name: String, timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[Unit]

    Undeploy an eventing function in the admin scope ('*.*').

    Undeploy an eventing function in the admin scope ('*.*').

    name

    the name of the eventing function to fetch.

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.

  9. def upsertFunction(function: EventingFunction, timeout: Duration = DefaultTimeout, retryStrategy: RetryStrategy = DefaultRetryStrategy, parentSpan: Option[RequestSpan] = None): Future[Unit]

    Upsert an eventing function into the admin scope ('*.*').

    Upsert an eventing function into the admin scope ('*.*').

    function

    the eventing function to upsert.

    timeout

    timeout to apply to the operation.

    retryStrategy

    controls how the operation is retried, if it needs to be.

    parentSpan

    controls the parent tracing span to use for the operation.