Uses of Interface
org.gearman.worker.GearmanFunction
-
Packages that use GearmanFunction Package Description org.gearman.example org.gearman.worker -
-
Uses of GearmanFunction in org.gearman.example
Classes in org.gearman.example that implement GearmanFunction Modifier and Type Class Description class
DigestFunction
The data passed to DigestFunction should contain two parameters separated by a null byte.class
ReverseFunction
Constructor parameters in org.gearman.example with type arguments of type GearmanFunction Constructor Description WorkerRunner(String host, int port, List<Class<GearmanFunction>> funs)
-
Uses of GearmanFunction in org.gearman.worker
Classes in org.gearman.worker that implement GearmanFunction Modifier and Type Class Description class
AbstractGearmanFunction
Methods in org.gearman.worker that return GearmanFunction Modifier and Type Method Description GearmanFunction
DefaultGearmanFunctionFactory. getFunction()
GearmanFunction
GearmanFunctionFactory. getFunction()
Factory method for generating aGearmanFunction
object.Method parameters in org.gearman.worker with type arguments of type GearmanFunction Modifier and Type Method Description void
GearmanWorker. registerFunction(Class<? extends GearmanFunction> function)
Registers a particularGearmanFunction
with the worker.void
GearmanWorker. registerFunction(Class<? extends GearmanFunction> function, long timeout)
Registers a particularGearmanFunction
with the worker.void
GearmanWorkerImpl. registerFunction(Class<? extends GearmanFunction> function)
void
GearmanWorkerImpl. registerFunction(Class<? extends GearmanFunction> function, long timeout)
-