当前位置: 首页>>代码示例>>Java>>正文


Java WorkHandler类代码示例

本文整理汇总了Java中com.lmax.disruptor.WorkHandler的典型用法代码示例。如果您正苦于以下问题:Java WorkHandler类的具体用法?Java WorkHandler怎么用?Java WorkHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


WorkHandler类属于com.lmax.disruptor包,在下文中一共展示了WorkHandler类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
EventHandlerGroup<T> createWorkerPool(
        final Sequence[] barrierSequences, final WorkHandler<? super T>[] workHandlers) {
    final SequenceBarrier sequenceBarrier = ringBuffer.newBarrier(barrierSequences);
    final WorkerPool<T> workerPool = new WorkerPool<T>(ringBuffer, sequenceBarrier, exceptionHandler, workHandlers);
    consumerRepository.add(workerPool, sequenceBarrier);
    return new EventHandlerGroup<T>(this, consumerRepository, workerPool.getWorkerSequences());
}
 
开发者ID:winwill2012,项目名称:disruptor-code-analysis,代码行数:8,代码来源:Disruptor.java

示例2: initNormalChannel

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
/**
 * 初始化正常管道,任何情况下都会有
 *
 * @param pool 线程池
 */
private void initNormalChannel(ExecutorService pool) {
    Disruptor<ElectronsHolder> normalDis = new Disruptor<>(ElectronsHolder::new, conf.getCircuitLen(), pool, ProducerType.MULTI, new LiteBlockingWaitStrategy());
    WorkHandler[] workHandlers = new WorkHandler[conf.getCircuitNum()];
    Arrays.fill(workHandlers, (WorkHandler<ElectronsHolder>) electronsHolder -> electronsHolder.handle());
    normalDis.handleEventsWithWorkerPool(workHandlers);
    normalDis.handleExceptionsWith(new ElecExceptionHandler("Normal Disruptor"));

    //初始化channel
    Channel normalChannel = new NormalChannel(normalDis);
    //配置限流相关
    normalChannel.confLimitRate(conf.isLimitRate(), conf.getPermitsPerSecond(), conf.isWarmup(), conf.getWarmupPeriod(), conf.getWarmPeriodUnit());
    channelMap.put(NORMAL_CHANNEL_KEY, normalChannel);
}
 
开发者ID:carryxyh,项目名称:Electrons,代码行数:19,代码来源:Dispatcher.java

示例3: configure

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
@Override
protected void configure() {
    configureCommonBeans();
    bindConstant().annotatedWith(Names.named("statsCollectors")).to(options.threads());
    bind(new TypeLiteral<EventHandler<TwoPhaseEvent<Increment>>>() {
    }).to(WriteUpdatesEventHandler.class).asEagerSingleton();
    bind(new TypeLiteral<WorkHandler<TwoPhaseEvent<Increment>>>() {
    }).to(LearnWorkHandler.class);
    bind(OutputFormat.class).to(StatisticsCalculator.class);
}
 
开发者ID:scaled-ml,项目名称:Scaled-ML,代码行数:11,代码来源:ParallelModule.java

示例4: configure

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
@Override
protected void configure() {
    configureCommonBeans();
    bindConstant().annotatedWith(Names.named("statsCollectors")).to(1);
    bind(new TypeLiteral<EventHandler<TwoPhaseEvent<SparseItem>>>() {
    }).to(LearnEventHandler.class).asEagerSingleton();
    bind(new TypeLiteral<WorkHandler<TwoPhaseEvent<SparseItem>>>() {
    }).to(ParseInputWorkHandler.class);
    bind(OutputFormat.class).to(StatisticsCalculator.class).asEagerSingleton();
}
 
开发者ID:scaled-ml,项目名称:Scaled-ML,代码行数:11,代码来源:SemiParallelModule.java

示例5: initialize

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
@Override
public boolean initialize(EventsChannelConfig config)
{
       super.initialize(config);
	log.info("Initialize disruptor events channel " + config.getName() + " with " + config);
	EventFactory<GridEvent> eventFactory = new DisruptorEventFactory();
       int ringBufferSize = config.getBlockQueueMaxNumber(); 
       int threadSize = config.getEventConsumerNumber();
       int bufferSize = ringBufferSize;
       if (Integer.bitCount(bufferSize) != 1)
       {
           bufferSize = (int) Math.pow(2, (int) (Math.log(ringBufferSize) / Math.log(2)));
           log.warn("Change disruptor events channel " + config.getName() + 
                   " buffer size from " + ringBufferSize + " to " + bufferSize);
       }
       if (bufferSize <= 0)
           throw new GridException("Invalid disruptor ringbuffur size:" + ringBufferSize);
       threadPool = Executors.newFixedThreadPool(threadSize);
       ringBuffer = RingBuffer.createMultiProducer(eventFactory, bufferSize, new BlockingWaitStrategy());  
       SequenceBarrier sequenceBarrier = ringBuffer.newBarrier();  
       ExecutorService executor = Executors.newFixedThreadPool(10);  
       @SuppressWarnings("unchecked")
       WorkHandler<GridEvent>[] workHandlers = new WorkHandler[threadSize];  
       for (int i = 0; i < threadSize; i++) {  
           WorkHandler<GridEvent> workHandler = new DisruptorEventsWorkHandler(getName());  
           workHandlers[i] = workHandler;  
       }  
 
       workerPool = new WorkerPool<GridEvent>(ringBuffer, sequenceBarrier, 
               new IgnoreExceptionHandler(), workHandlers);  
       workerPool.start(executor);  
	return true;
}
 
开发者ID:liulhdarks,项目名称:darks-grid,代码行数:34,代码来源:DisruptorEventsChannel.java

示例6: createWorkers

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
@SuppressWarnings("unchecked")
private WorkHandler<LogEvent<E>>[] createWorkers() {
    WorkHandler<LogEvent<E>> handler = new ClearingWorkHandler<>(workHandler);
    WorkHandler<LogEvent<E>>[] workers = new WorkHandler[threadPoolSize];
    for (int i = 0; i < threadPoolSize; i++) {
        workers[i] = handler;
    }
    return workers;
}
 
开发者ID:trautonen,项目名称:logback-ext,代码行数:10,代码来源:DisruptorAppender.java

示例7: setWorkHandler

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
public final void setWorkHandler(WorkHandler<LogEvent<E>> workHandler) {
    this.workHandler = workHandler;
}
 
开发者ID:trautonen,项目名称:logback-ext,代码行数:4,代码来源:DisruptorAppender.java

示例8: ClearingWorkHandler

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
public ClearingWorkHandler(WorkHandler<LogEvent<E>> delegate) {
    this.delegate = delegate;
}
 
开发者ID:trautonen,项目名称:logback-ext,代码行数:4,代码来源:DisruptorAppender.java

示例9: createWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
EventHandlerGroup<T> createWorkerPool(final Sequence[] barrierSequences, final WorkHandler<T>[] workHandlers) {
    final SequenceBarrier sequenceBarrier = ringBuffer.newBarrier(barrierSequences);
    final WorkerPool<T> workerPool = new WorkerPool<T>(ringBuffer, sequenceBarrier, exceptionHandler, workHandlers);
    consumerRepository.add(workerPool, sequenceBarrier);
    return new EventHandlerGroup<T>(this, consumerRepository, workerPool.getWorkerSequences());
}
 
开发者ID:wen866595,项目名称:annotated-src,代码行数:7,代码来源:Disruptor.java

示例10: handleEventsWithWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
/**
 * Set up a {@link WorkerPool} to distribute an event to one of a pool of work handler threads.
 * Each event will only be processed by one of the work handlers.
 * The Disruptor will automatically start this processors when {@link #start()} is called.
 *
 * @param workHandlers the work handlers that will process events.
 * @return a {@link EventHandlerGroup} that can be used to chain dependencies.
 */
@SuppressWarnings("varargs")
public EventHandlerGroup<T> handleEventsWithWorkerPool(final WorkHandler<T>... workHandlers) {
    return createWorkerPool(new Sequence[0], workHandlers);
}
 
开发者ID:winwill2012,项目名称:disruptor-code-analysis,代码行数:13,代码来源:Disruptor.java

示例11: thenHandleEventsWithWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
/**
 * Set up a worker pool to handle events from the ring buffer. The worker pool will only process events
 * after every {@link EventProcessor} in this group has processed the event. Each event will be processed
 * by one of the work handler instances.
 * <p>
 * <p>This method is generally used as part of a chain. For example if the handler <code>A</code> must
 * process events before the worker pool with handlers <code>B, C</code>:</p>
 * <p>
 * <pre><code>dw.handleEventsWith(A).thenHandleEventsWithWorkerPool(B, C);</code></pre>
 *
 * @param handlers the work handlers that will process events. Each work handler instance will provide an extra thread in the worker pool.
 * @return a {@link EventHandlerGroup} that can be used to set up a event processor barrier over the created event processors.
 */
public EventHandlerGroup<T> thenHandleEventsWithWorkerPool(final WorkHandler<? super T>... handlers)
{
    return handleEventsWithWorkerPool(handlers);
}
 
开发者ID:winwill2012,项目名称:disruptor-code-analysis,代码行数:18,代码来源:EventHandlerGroup.java

示例12: handleEventsWithWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
/**
 * Set up a worker pool to handle events from the ring buffer. The worker pool will only process events
 * after every {@link EventProcessor} in this group has processed the event. Each event will be processed
 * by one of the work handler instances.
 * <p>
 * <p>This method is generally used as part of a chain. For example if the handler <code>A</code> must
 * process events before the worker pool with handlers <code>B, C</code>:</p>
 * <p>
 * <pre><code>dw.after(A).handleEventsWithWorkerPool(B, C);</code></pre>
 *
 * @param handlers the work handlers that will process events. Each work handler instance will provide an extra thread in the worker pool.
 * @return a {@link EventHandlerGroup} that can be used to set up a event processor barrier over the created event processors.
 */
public EventHandlerGroup<T> handleEventsWithWorkerPool(final WorkHandler<? super T>... handlers)
{
    return disruptor.createWorkerPool(sequences, handlers);
}
 
开发者ID:winwill2012,项目名称:disruptor-code-analysis,代码行数:18,代码来源:EventHandlerGroup.java

示例13: handleEventsWithWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
/**
 * Set up a {@link WorkerPool} to distribute an event to one of a pool of work handler threads.
 * Each event will only be processed by one of the work handlers.
 * The Disruptor will automatically start this processors when {@link #start()} is called.
 *
 * @param workHandlers the work handlers that will process events.
 * @return a {@link EventHandlerGroup} that can be used to chain dependencies.
 */
public EventHandlerGroup<T> handleEventsWithWorkerPool(final WorkHandler<T>... workHandlers) {
    return createWorkerPool(new Sequence[0], workHandlers);
}
 
开发者ID:wen866595,项目名称:annotated-src,代码行数:12,代码来源:Disruptor.java

示例14: thenHandleEventsWithWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
/**
 * Set up a worker pool to handle events from the ring buffer. The worker pool will only process events
 * after every {@link EventProcessor} in this group has processed the event. Each event will be processed
 * by one of the work handler instances.
 *
 * <p>This method is generally used as part of a chain. For example if the handler <code>A</code> must
 * process events before the worker pool with handlers <code>B, C</code>:</p>
 *
 * <pre><code>dw.handleEventsWith(A).thenHandleEventsWithWorkerPool(B, C);</code></pre>
 *
 * @param handlers the work handlers that will process events. Each work handler instance will provide an extra thread in the worker pool.
 * @return a {@link EventHandlerGroup} that can be used to set up a event processor barrier over the created event processors.
 */
public EventHandlerGroup<T> thenHandleEventsWithWorkerPool(final WorkHandler<T>... handlers) {
    return handleEventsWithWorkerPool(handlers);
}
 
开发者ID:wen866595,项目名称:annotated-src,代码行数:17,代码来源:EventHandlerGroup.java

示例15: handleEventsWithWorkerPool

import com.lmax.disruptor.WorkHandler; //导入依赖的package包/类
/**
 * Set up a worker pool to handle events from the ring buffer. The worker pool will only process events
 * after every {@link EventProcessor} in this group has processed the event. Each event will be processed
 * by one of the work handler instances.
 *
 * <p>This method is generally used as part of a chain. For example if the handler <code>A</code> must
 * process events before the worker pool with handlers <code>B, C</code>:</p>
 *
 * <pre><code>dw.after(A).handleEventsWithWorkerPool(B, C);</code></pre>
 *
 * @param handlers the work handlers that will process events. Each work handler instance will provide an extra thread in the worker pool.
 * @return a {@link EventHandlerGroup} that can be used to set up a event processor barrier over the created event processors.
 */
public EventHandlerGroup<T> handleEventsWithWorkerPool(final WorkHandler<T>... handlers) {
    return disruptor.createWorkerPool(sequences, handlers);
}
 
开发者ID:wen866595,项目名称:annotated-src,代码行数:17,代码来源:EventHandlerGroup.java


注:本文中的com.lmax.disruptor.WorkHandler类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。