Uses of Class
com.couchbase.client.java.manager.eventing.EventingFunction
Packages that use EventingFunction
-
Uses of EventingFunction in com.couchbase.client.java.manager.eventing
Methods in com.couchbase.client.java.manager.eventing that return EventingFunctionModifier and TypeMethodDescriptionEventingFunction.Builder.build()Builds the immutableEventingFunction.static EventingFunctionEventingFunction.create(String name, String code, EventingFunctionKeyspace sourceKeyspace, EventingFunctionKeyspace metadataKeyspace) Creates a newEventingFunctionwith the minimal required properties.static EventingFunctionEventingFunction.fromFunction(byte[] encoded) Creates aEventingFunctionfrom a raw JSON.EventingFunctionManager.getFunction(String name) Retrieves aEventingFunctionby its name.EventingFunctionManager.getFunction(String name, GetFunctionOptions options) Retrieves aEventingFunctionby its name with custom options.Methods in com.couchbase.client.java.manager.eventing that return types with arguments of type EventingFunctionModifier and TypeMethodDescriptionstatic List<EventingFunction>EventingFunction.fromExportedFunctions(byte[] encoded) Creates a list ofEventingFunctions from a raw JSON, usually exported from the server UI.AsyncEventingFunctionManager.getAllFunctions()Retrieves allEventingFunctionscurrently stored on the server.AsyncEventingFunctionManager.getAllFunctions(GetAllFunctionsOptions options) Retrieves allEventingFunctionscurrently stored on the server with custom options.EventingFunctionManager.getAllFunctions()Retrieves allEventingFunctionscurrently stored on the server.EventingFunctionManager.getAllFunctions(GetAllFunctionsOptions options) Retrieves allEventingFunctionscurrently stored on the server with custom options.ReactiveEventingFunctionManager.getAllFunctions()Retrieves allEventingFunctionscurrently stored on the server.ReactiveEventingFunctionManager.getAllFunctions(GetAllFunctionsOptions options) Retrieves allEventingFunctionscurrently stored on the server with custom options.AsyncEventingFunctionManager.getFunction(String name) Retrieves aEventingFunctionby its name.AsyncEventingFunctionManager.getFunction(String name, GetFunctionOptions options) Retrieves aEventingFunctionby its name with custom options.ReactiveEventingFunctionManager.getFunction(String name) Retrieves aEventingFunctionby its name.ReactiveEventingFunctionManager.getFunction(String name, GetFunctionOptions options) Retrieves aEventingFunctionby its name with custom options.Methods in com.couchbase.client.java.manager.eventing with parameters of type EventingFunctionModifier and TypeMethodDescriptionAsyncEventingFunctionManager.upsertFunction(EventingFunction function) Inserts or replaces aEventingFunction.AsyncEventingFunctionManager.upsertFunction(EventingFunction function, UpsertFunctionOptions options) Inserts or replaces aEventingFunctionwith custom options.voidEventingFunctionManager.upsertFunction(EventingFunction function) Inserts or replaces aEventingFunction.voidEventingFunctionManager.upsertFunction(EventingFunction function, UpsertFunctionOptions options) Inserts or replaces aEventingFunctionwith custom options.ReactiveEventingFunctionManager.upsertFunction(EventingFunction function) Inserts or replaces aEventingFunction.ReactiveEventingFunctionManager.upsertFunction(EventingFunction function, UpsertFunctionOptions options) Inserts or replaces aEventingFunctionwith custom options.