Uses of Interface
org.gearman.client.GearmanIOEventListener
-
Packages that use GearmanIOEventListener Package Description org.gearman.client org.gearman.common org.gearman.worker -
-
Uses of GearmanIOEventListener in org.gearman.client
Methods in org.gearman.client with parameters of type GearmanIOEventListener Modifier and Type Method Description void
GearmanJob. registerEventListener(GearmanIOEventListener listener)
As a GearmanJob progress through its' lifecycle, it will receives a series of events notifications from the Gearman Job Server.void
GearmanJobImpl. registerEventListener(GearmanIOEventListener listener)
boolean
GearmanJob. removeEventListener(GearmanIOEventListener listener)
removes aGearmanIOEventListener
from recieving event notifications.boolean
GearmanJobImpl. removeEventListener(GearmanIOEventListener listener)
-
Uses of GearmanIOEventListener in org.gearman.common
Classes in org.gearman.common that implement GearmanIOEventListener Modifier and Type Class Description class
GearmanJobServerSession
class
GearmanTask
-
Uses of GearmanIOEventListener in org.gearman.worker
Fields in org.gearman.worker with type parameters of type GearmanIOEventListener Modifier and Type Field Description protected Set<GearmanIOEventListener>
AbstractGearmanFunction. listeners
Methods in org.gearman.worker with parameters of type GearmanIOEventListener Modifier and Type Method Description void
AbstractGearmanFunction. registerEventListener(GearmanIOEventListener listener)
void
GearmanFunction. registerEventListener(GearmanIOEventListener listener)
As a function executes, it can generate a series of I/O Events -- in the form of aGearmanPacket
-- that can be handled by a series of listeners.
-