groovyx.gpars.group
Class NonDaemonPGroup

java.lang.Object
  extended by groovyx.gpars.group.PGroup
      extended by groovyx.gpars.group.NonDaemonPGroup
All Implemented Interfaces:
groovy.lang.GroovyObject, Pool

public final class NonDaemonPGroup
extends groovyx.gpars.group.PGroup

Provides logical grouping for actors, agents and dataflow tasks and operators. Each group has an underlying thread pool, which will perform actions on behalf of the users belonging to the group. Actors created through the DefaultPGroup.actor() method will automatically belong to the group through which they were created, just like agents created through the agent() or fairAgent() methods or dataflow tasks and operators created through the task() or operator() methods. Uses a pool of non-daemon threads. The DefaultPGroup class implements the Pool interface through @Delegate.

Author:
Vaclav Pech Date: Jun 17, 2009

Field Summary
 
Fields inherited from interface groovyx.gpars.scheduler.Pool
POOL_SIZE_MUST_BE_A_POSITIVE_NUMBER, UNCAUGHT_EXCEPTION_OCCURRED_IN_ACTOR_POOL
 
Constructor Summary
NonDaemonPGroup()
          Creates a group for actors, agents, tasks and operators.
NonDaemonPGroup(int poolSize)
          Creates a group for actors, agents, tasks and operators.
 
Method Summary
 
Methods inherited from class groovyx.gpars.group.PGroup
, actor, agent, agent, blockingActor, execute, fairActor, fairAgent, fairAgent, fairMessageHandler, fairReactor, finalize, getMetaClass, getPoolSize, getProperty, getThreadPool, invokeMethod, messageHandler, operator, operator, operator, operator, operator, prioritySelector, prioritySelector, prioritySelector, prioritySelector, reactor, resetDefaultSize, resize, select, select, selector, selector, selector, selector, setMetaClass, setProperty, shutdown, splitter, splitter, task, task, task
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NonDaemonPGroup

public NonDaemonPGroup()
Creates a group for actors, agents, tasks and operators. The actors will share a common non-daemon thread pool.


NonDaemonPGroup

public NonDaemonPGroup(int poolSize)
Creates a group for actors, agents, tasks and operators. The actors will share a common non-daemon thread pool.

Parameters:
poolSize - The initial size of the underlying thread pool

Copyright © 2008–2010 Václav Pech. All Rights Reserved.