Uses of Class
org.apache.cassandra.cql3.functions.UDFunction
Packages that use UDFunction
Package
Description
-
Uses of UDFunction in org.apache.cassandra.auth
Methods in org.apache.cassandra.auth with parameters of type UDFunctionModifier and TypeMethodDescriptionvoidAuthSchemaChangeListener.onDropFunction(UDFunction function) -
Uses of UDFunction in org.apache.cassandra.cql3.functions
Subclasses of UDFunction in org.apache.cassandra.cql3.functionsMethods in org.apache.cassandra.cql3.functions that return UDFunctionModifier and TypeMethodDescriptionstatic UDFunctionUDFunction.create(FunctionName name, List<ColumnIdentifier> argNames, List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, String language, String body) static UDFunctionUDFunction.createBrokenFunction(FunctionName name, List<ColumnIdentifier> argNames, List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, String language, String body, InvalidRequestException reason) It can happen that a function has been declared (is listed in the scheam) but cannot be loaded (maybe only on some nodes).static UDFunctionUDFunction.tryCreate(FunctionName name, List<ColumnIdentifier> argNames, List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, String language, String body) UDFunction.withUpdatedUserType(UserType udt) Method parameters in org.apache.cassandra.cql3.functions with type arguments of type UDFunctionModifier and TypeMethodDescriptionstatic UDAggregateUDAggregate.create(Collection<UDFunction> functions, FunctionName name, List<AbstractType<?>> argTypes, AbstractType<?> returnType, FunctionName stateFunc, FunctionName finalFunc, AbstractType<?> stateType, ByteBuffer initcond) UDAggregate.withUpdatedUserType(Collection<UDFunction> udfs, UserType udt) -
Uses of UDFunction in org.apache.cassandra.schema
Fields in org.apache.cassandra.schema with type parameters of type UDFunctionMethods in org.apache.cassandra.schema that return types with arguments of type UDFunctionModifier and TypeMethodDescriptionUserFunctions.getUdfs(FunctionName name) Get all UDFs overloads with the specified nameUserFunctions.udfs()Methods in org.apache.cassandra.schema with parameters of type UDFunctionModifier and TypeMethodDescriptiondefault voidSchemaChangeListener.onAlterFunction(UDFunction before, UDFunction after) default voidSchemaChangeListener.onCreateFunction(UDFunction function) default voidSchemaChangeListener.onDropFunction(UDFunction function) -
Uses of UDFunction in org.apache.cassandra.transport
Methods in org.apache.cassandra.transport with parameters of type UDFunctionModifier and TypeMethodDescriptionstatic Event.SchemaChangeEvent.SchemaChange.forFunction(Event.SchemaChange.Change change, UDFunction function) voidServer.EventNotifier.onAlterFunction(UDFunction before, UDFunction after) voidServer.EventNotifier.onCreateFunction(UDFunction function) voidServer.EventNotifier.onDropFunction(UDFunction function)