Package com.linkedin.databus.core

Examples of com.linkedin.databus.core.FileBasedEventTrackingCallback


  public IntegratedDummyDatabusConsumer(String outputFilename, long maxEventBufferSize, int maxReadBufferSize,
                                        boolean useConsumerTimeout)
  {
    // use the default log4j configuration
    //System.out.println("level set to debug");
    _fileBasedCallback = new FileBasedEventTrackingCallback(outputFilename, false);
    _maxEventBufferSize = maxEventBufferSize;
    _maxReadBufferSize = maxReadBufferSize;
    _useConsumerTimeout = useConsumerTimeout;
  }
View Full Code Here


  public  void enableEventFileTrace(String outputFileName, boolean append) throws IOException
  {
    if (outputFileName != null)
    {
      _fileBasedCallback = new FileBasedEventTrackingCallback(outputFileName, append);
      _fileBasedCallback.init();
    }
  }
View Full Code Here

      _fileBasedMetadataCallback.init();
    }

    if (eventDumpFile != null)
    {
      _fileBasedRawEventCallback = new FileBasedEventTrackingCallback(eventDumpFile, appendOnly);
      _fileBasedRawEventCallback.init();
    }
  }
View Full Code Here

TOP

Related Classes of com.linkedin.databus.core.FileBasedEventTrackingCallback

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.