Package com.odiago.flumebase.exec.local

Examples of com.odiago.flumebase.exec.local.TimerFlowElemContext


  }

  /** {@inheritDoc} */
  @Override
  public void open() throws IOException, InterruptedException {
    TimerFlowElemContext timerContext = (TimerFlowElemContext) getContext();
    // Start the auto-closing thread. Initialize the reference to the queue it populates
    // from our timer context.
    mTimerQueue = timerContext.getTimerQueue();
    mEvictionThread = new EvictionThread();
    mEvictionThread.start();
    super.open();
  }
View Full Code Here

TOP

Related Classes of com.odiago.flumebase.exec.local.TimerFlowElemContext

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.