1 21 22 package org.jacorb.notification.engine; 23 24 import org.apache.avalon.framework.configuration.Configuration; 25 import org.jacorb.notification.conf.Attributes; 26 import org.jacorb.notification.conf.Default; 27 28 public class ConfigurablePushTaskExecutorFactory extends DefaultPushTaskExecutorFactory 29 { 30 public ConfigurablePushTaskExecutorFactory(Configuration config) 31 { 32 super(config.getAttributeAsInteger(Attributes.DELIVER_POOL_WORKERS, 33 Default.DEFAULT_DELIVER_POOL_WORKERS)); 34 } 35 } 36 | Popular Tags |