Uses of Class
com.couchbase.client.java.manager.eventing.EventingFunction
-
Packages that use EventingFunction Package Description com.couchbase.client.java.manager.eventing -
-
Uses of EventingFunction in com.couchbase.client.java.manager.eventing
Methods in com.couchbase.client.java.manager.eventing that return EventingFunction Modifier and Type Method Description EventingFunction
EventingFunction.Builder. build()
Builds the immutableEventingFunction
.static EventingFunction
EventingFunction. create(String name, String code, EventingFunctionKeyspace sourceKeyspace, EventingFunctionKeyspace metadataKeyspace)
Creates a newEventingFunction
with the minimal required properties.EventingFunction
EventingFunctionManager. getFunction(String name)
Retrieves aEventingFunction
by its name.EventingFunction
EventingFunctionManager. getFunction(String name, GetFunctionOptions options)
Retrieves aEventingFunction
by its name with custom options.Methods in com.couchbase.client.java.manager.eventing that return types with arguments of type EventingFunction Modifier and Type Method Description CompletableFuture<List<EventingFunction>>
AsyncEventingFunctionManager. getAllFunctions()
Retrieves allEventingFunctions
currently stored on the server.CompletableFuture<List<EventingFunction>>
AsyncEventingFunctionManager. getAllFunctions(GetAllFunctionsOptions options)
Retrieves allEventingFunctions
currently stored on the server with custom options.List<EventingFunction>
EventingFunctionManager. getAllFunctions()
Retrieves allEventingFunctions
currently stored on the server.List<EventingFunction>
EventingFunctionManager. getAllFunctions(GetAllFunctionsOptions options)
Retrieves allEventingFunctions
currently stored on the server with custom options.Flux<EventingFunction>
ReactiveEventingFunctionManager. getAllFunctions()
Retrieves allEventingFunctions
currently stored on the server.Flux<EventingFunction>
ReactiveEventingFunctionManager. getAllFunctions(GetAllFunctionsOptions options)
Retrieves allEventingFunctions
currently stored on the server with custom options.CompletableFuture<EventingFunction>
AsyncEventingFunctionManager. getFunction(String name)
Retrieves aEventingFunction
by its name.CompletableFuture<EventingFunction>
AsyncEventingFunctionManager. getFunction(String name, GetFunctionOptions options)
Retrieves aEventingFunction
by its name with custom options.Mono<EventingFunction>
ReactiveEventingFunctionManager. getFunction(String name)
Retrieves aEventingFunction
by its name.Mono<EventingFunction>
ReactiveEventingFunctionManager. getFunction(String name, GetFunctionOptions options)
Retrieves aEventingFunction
by its name with custom options.Methods in com.couchbase.client.java.manager.eventing with parameters of type EventingFunction Modifier and Type Method Description CompletableFuture<Void>
AsyncEventingFunctionManager. upsertFunction(EventingFunction function)
Inserts or replaces aEventingFunction
.CompletableFuture<Void>
AsyncEventingFunctionManager. upsertFunction(EventingFunction function, UpsertFunctionOptions options)
Inserts or replaces aEventingFunction
with custom options.void
EventingFunctionManager. upsertFunction(EventingFunction function)
Inserts or replaces aEventingFunction
.void
EventingFunctionManager. upsertFunction(EventingFunction function, UpsertFunctionOptions options)
Inserts or replaces aEventingFunction
with custom options.Mono<Void>
ReactiveEventingFunctionManager. upsertFunction(EventingFunction function)
Inserts or replaces aEventingFunction
.Mono<Void>
ReactiveEventingFunctionManager. upsertFunction(EventingFunction function, UpsertFunctionOptions options)
Inserts or replaces aEventingFunction
with custom options.
-