c

com.couchbase.client.scala.manager.eventing

ScopeEventingFunctionManager

class ScopeEventingFunctionManager extends AnyRef

This interface allows managing eventing functions that exist on a particular scope.

For working with eventing functions in the admin ("*.*") scope see EventingFunctionManager, accessed from com.couchbase.client.scala.Cluster.eventingFunctions

Annotations
@Uncommitted() @SinceCouchbase()
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScopeEventingFunctionManager
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ScopeEventingFunctionManager(async: AsyncScopeEventingFunctionManager)

Value Members

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

    Deploy an eventing function in this scope.

    Deploy an eventing function in this 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): Try[Unit]

    Drop an eventing function from this scope.

    Drop an eventing function from this 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): Try[EventingStatus]

    Get the status of an eventing function in this scope.

    Get the status of an eventing function in this 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): Try[Seq[EventingFunction]]

    Get all eventing functions from this scope.

    Get all eventing functions from this 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): Try[EventingFunction]

    Fetch an eventing function from this scope.

    Fetch an eventing function from this 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): Try[Unit]

    Pause an eventing function in this scope.

    Pause an eventing function in this 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): Try[Unit]

    Resume a paused eventing function in this scope.

    Resume a paused eventing function in this 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): Try[Unit]

    Undeploy an eventing function in this scope.

    Undeploy an eventing function in this 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): Try[Unit]

    Upsert an eventing function into this scope.

    Upsert an eventing function into this 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.