1 package org.jacorb.notification.conf; 2 3 23 24 28 29 public interface Attributes 30 { 31 String FILTER_POOL_WORKERS = 32 "jacorb.notification.filter.thread_pool_size"; 33 34 String DELIVER_POOL_WORKERS = 35 "jacorb.notification.proxysupplier.thread_pool_size"; 36 37 String PULL_POOL_WORKERS = 38 "jacorb.notification.proxyconsumer.thread_pool_size"; 39 40 String PULL_CONSUMER_POLL_INTERVAL = 41 "jacorb.notification.supplier.poll_intervall"; 42 43 String MAX_BATCH_SIZE = 44 "jacorb.notification.max_batch_size"; 45 46 String MAX_EVENTS_PER_CONSUMER = 47 "jacorb.notification.max_events_per_consumer"; 48 49 String ORDER_POLICY = 50 "jacorb.notification.order_policy"; 51 52 String DISCARD_POLICY = 53 "jacorb.notification.discard_policy"; 54 55 String BACKOUT_INTERVAL = 56 "jacorb.notification.consumer.backout_interval"; 57 58 String EVENTCONSUMER_ERROR_THRESHOLD = 59 "jacorb.notification.consumer.error_threshold"; 60 61 String THREADPOLICY = 62 "jacorb.notification.proxysupplier.threadpolicy"; 63 64 String FILTER_FACTORY = 65 "jacorb.notification.default_filter_factory"; 66 67 String MAX_NUMBER_CONSUMERS = 68 "jacorb.notification.consumer.max_number"; 69 70 String MAX_NUMBER_SUPPLIERS = 71 "jacorb.notification.supplier.max_number"; 72 73 String START_TIME_SUPPORTED = 74 "jacorb.notification.start_time_supported"; 75 76 String STOP_TIME_SUPPORTED = 77 "jacorb.notification.stop_time_supported"; 78 79 String DISPOSE_PROXY_CALLS_DISCONNECT = 80 "jacorb.notification.proxy.destroy_causes_disconnect"; 81 82 String LAZY_DEFAULT_ADMIN_INIT = 83 "jacorb.notification.admin.lazy_initialization"; 84 85 String REJECT_NEW_EVENTS = 86 "jacorb.notification.admin.reject_new_events"; 87 88 String MAX_QUEUE_LENGTH = 89 "jacorb.notification.admin.max_queue_length"; 90 91 String PRINT_IOR = 92 "jacorb.notification.print_ior"; 93 94 String PRINT_CORBALOC = 95 "jacorb.notification.print_corbaloc"; 96 97 String IOR_FILE = 98 "jacorb.notification.ior_file"; 99 100 String START_CHANNELS = 101 "jacorb.notification.start_channels"; 102 103 String REGISTER_NAME_ID = 104 "jacorb.notification.register_name.id"; 105 106 String REGISTER_NAME_KIND = 107 "jacorb.notification.register_name.kind"; 108 109 String ENABLE_TYPED_CHANNEL = 110 "jacorb.notification.enable_typed_channel"; 111 112 String USE_GC = "jacorb.notification.enable_gc"; 113 114 String FILTER_PLUGIN_PREFIX = 115 "jacorb.notification.filter.plugin"; 116 117 String WILDCARDMAP_CLASS = "jacorb.notification.filter.wildcardmap_impl"; 118 119 String RETRY_STRATEGY_FACTORY = "jacorb.notification.proxysupplier.retrystrategy_factory"; 120 121 String DEAD_FILTER_INTERVAL = "jacorb.notification.filter.dead_interval"; 122 } 123 | Popular Tags |