1 package org.jacorb.notification.conf; 2 3 import org.jacorb.notification.engine.TaskProcessorRetryStrategyFactory; 4 import org.jacorb.notification.util.WeakCacheWildcardMap; 5 6 26 27 31 32 public interface Default 33 { 34 long DEFAULT_PULL_CONSUMER_POLL_INTERVAL = 1000L; 35 36 String DEFAULT_ORDER_POLICY = "PriorityOrder"; 37 38 String DEFAULT_DISCARD_POLICY = "PriorityOrder"; 39 40 int DEFAULT_MAX_EVENTS_PER_CONSUMER = 100; 41 42 int DEFAULT_MAX_BATCH_SIZE = 1; 43 44 int DEFAULT_FILTER_POOL_SIZE = 2; 45 46 int DEFAULT_DELIVER_POOL_WORKERS = 4; 47 48 int DEFAULT_BACKOUT_INTERVAL = 2000; 49 50 int DEFAULT_EVENTCONSUMER_ERROR_THRESHOLD = 3; 51 52 int DEFAULT_PULL_POOL_SIZE = 2; 53 54 String DEFAULT_THREADPOLICY = "ThreadPool"; 55 56 String DEFAULT_FILTER_FACTORY = "builtin"; 57 58 61 int DEFAULT_MAX_NUMBER_SUPPLIERS = 0; 62 63 66 int DEFAULT_MAX_NUMBER_CONSUMERS = 0; 67 68 String DEFAULT_START_TIME_SUPPORTED = "on"; 69 70 String DEFAULT_STOP_TIME_SUPPORTED = "on"; 71 72 75 int DEFAULT_CONCURRENT_PULL_OPERATIONS_ALLOWED = 1; 76 77 String DEFAULT_DISPOSE_PROXY_CALLS_DISCONNECT = "on"; 78 79 String DEFAULT_LAZY_DEFAULT_ADMIN_INIT = "on"; 80 81 String DEFAULT_REJECT_NEW_EVENTS = "off"; 82 83 86 int DEFAULT_MAX_QUEUE_LENGTH = 0; 87 88 String DEFAULT_WILDCARDMAP_IMPL = WeakCacheWildcardMap.class.getName(); 89 90 String DEFAULT_RETRY_STRATEGY_FACTORY = TaskProcessorRetryStrategyFactory.class.getName(); 91 92 95 long DEFAULT_DEAD_FILTER_INTERVAL = 0; 96 97 boolean DEFAULT_USE_GC = false; 98 } 99 | Popular Tags |