Package com.linkedin.databus.core.RelayEventTraceOption

Examples of com.linkedin.databus.core.RelayEventTraceOption.RelayEventTraceOptionBuilder


      _defaultMemUsage = DEFAULT_DEFAULT_MEMUSAGE;
      deriveSizesFromMemPct();
      _allocationPolicy = getMaxSize() > 10000 ? "DIRECT_MEMORY":"HEAP_MEMORY";
      _mmapDirectory = DEFAULT_MMAP_DIRECTORY;
      _queuePolicy = DEFAULT_QUEUE_POLICY.toString();
      _trace = new RelayEventTraceOptionBuilder();
      _bufferRemoveWaitPeriodSec = BUFFER_REMOVE_WAIT_PERIOD;
      _restoreMMappedBuffers = false;
      _enableScnIndex = true;
      _maxEventSize = DEFAULT_MAX_EVENT_SIZE;
    }
View Full Code Here


      _allocationPolicy = other._allocationPolicy;
      _mmapDirectory = other._mmapDirectory;
      _defaultMemUsage = other._defaultMemUsage;
      _queuePolicy = other._queuePolicy;
      _existingBuffer = other._existingBuffer;
      _trace = new RelayEventTraceOptionBuilder(other._trace);
      _bufferRemoveWaitPeriodSec = other._bufferRemoveWaitPeriodSec;
      _restoreMMappedBuffers = other._restoreMMappedBuffers;
      _enableScnIndex = other._enableScnIndex;
    }
View Full Code Here

TOP

Related Classes of com.linkedin.databus.core.RelayEventTraceOption.RelayEventTraceOptionBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.