Uses of Class
org.apache.cassandra.cql3.functions.UDFunction
-
Packages that use UDFunction Package Description org.apache.cassandra.auth org.apache.cassandra.cql3.functions org.apache.cassandra.schema org.apache.cassandra.transport -
-
Uses of UDFunction in org.apache.cassandra.auth
Methods in org.apache.cassandra.auth with parameters of type UDFunction Modifier and Type Method Description voidAuthSchemaChangeListener. onDropFunction(UDFunction function) -
Uses of UDFunction in org.apache.cassandra.cql3.functions
Subclasses of UDFunction in org.apache.cassandra.cql3.functions Modifier and Type Class Description classJavaBasedUDFunctionMethods in org.apache.cassandra.cql3.functions that return UDFunction Modifier and Type Method Description static UDFunctionUDFunction. create(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)static UDFunctionUDFunction. createBrokenFunction(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.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, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)UDFunctionUDFunction. withUpdatedUserType(UserType udt)Method parameters in org.apache.cassandra.cql3.functions with type arguments of type UDFunction Modifier and Type Method Description static UDAggregateUDAggregate. create(java.util.Collection<UDFunction> functions, FunctionName name, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, FunctionName stateFunc, FunctionName finalFunc, AbstractType<?> stateType, java.nio.ByteBuffer initcond)UDAggregateUDAggregate. withUpdatedUserType(java.util.Collection<UDFunction> udfs, UserType udt) -
Uses of UDFunction in org.apache.cassandra.schema
Fields in org.apache.cassandra.schema with type parameters of type UDFunction Modifier and Type Field Description Functions.FunctionsDiff<UDFunction>KeyspaceMetadata.KeyspaceDiff. udfsMethods in org.apache.cassandra.schema that return types with arguments of type UDFunction Modifier and Type Method Description java.util.Collection<UDFunction>Functions. getUdfs(FunctionName name)Get all UDFs overloads with the specified namejava.util.stream.Stream<UDFunction>Functions. udfs()Methods in org.apache.cassandra.schema with parameters of type UDFunction Modifier and Type Method Description default 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 UDFunction Modifier and Type Method Description static 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)
-