Uses of Interface
org.apache.felix.eventadmin.impl.tasks.HandlerTask

Packages that use HandlerTask
org.apache.felix.eventadmin.impl.dispatch   
org.apache.felix.eventadmin.impl.handler   
org.apache.felix.eventadmin.impl.tasks   
 

Uses of HandlerTask in org.apache.felix.eventadmin.impl.dispatch
 

Methods in org.apache.felix.eventadmin.impl.dispatch that return HandlerTask
 HandlerTask TaskProducer.next()
          Block until a new task is ready and is returned or no more tasks will be returned.
 HandlerTask TaskHandler.next()
          Block until a new task is ready and is returned or no more tasks will be returned.
 

Methods in org.apache.felix.eventadmin.impl.dispatch with parameters of type HandlerTask
 void TaskQueue.append(HandlerTask[] tasks)
          Append the tasks to this queue in one atomic operation while preserving their order.
 void TaskHandler.append(HandlerTask[] tasks)
          Append the tasks to this queue in one atomic operation while preserving their order.
 void TaskQueue.close(HandlerTask shutdownTask)
          Close the queue.
 void TaskHandler.close(HandlerTask shutdownTask)
          Close the queue.
 void TaskQueue.push(HandlerTask[] tasks)
          Push the tasks to this queue in one atomic operation while preserving their order.
 void TaskHandler.push(HandlerTask[] tasks)
          Push the tasks to this queue in one atomic operation while preserving their order.
 

Uses of HandlerTask in org.apache.felix.eventadmin.impl.handler
 

Methods in org.apache.felix.eventadmin.impl.handler that return HandlerTask
 HandlerTask[] BlacklistingHandlerTasks.createHandlerTasks(org.osgi.service.event.Event event)
          Create the handler tasks for the event.
 HandlerTask[] HandlerTasks.createHandlerTasks(org.osgi.service.event.Event event)
          Create the handler tasks for the event.
 

Uses of HandlerTask in org.apache.felix.eventadmin.impl.tasks
 

Classes in org.apache.felix.eventadmin.impl.tasks that implement HandlerTask
 class BlockTask
          This task will can be used to block a thread that subsequently will be unblocked once the task is executed.
 class HandlerTaskImpl
          An implementation of the HandlerTask interface.
 class ResumeTask
          A task that wakes-up a disabled DispatchTask.
 

Methods in org.apache.felix.eventadmin.impl.tasks with parameters of type HandlerTask
 void SyncDeliverTasks.execute(HandlerTask[] tasks)
          This blocks an unrelated thread used to send a synchronous event until the event is send (or a timeout occurs).
 void DeliverTask.execute(HandlerTask[] handlerTasks)
          Dispatch the given event dispatch tasks.
 void AsyncDeliverTasks.execute(HandlerTask[] tasks)
          Execute asynchronous event dispatch.