
java并发框架-Disruptor3.2
文章平均质量分 52
iteye_7017
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Disruptor start
1.Disruptor下载地址 https://github.com/LMAX-Exchange/disruptor 2.BlockingQueue http://wsmajunfeng.iteye.com/blog/1629354 2.并发编程网 http://ifeve.com/ali-think-3/#more-28323原创 2016-09-03 11:02:57 · 159 阅读 · 0 评论 -
Disruptor入门教程(译)
Getting the Disruptor 获取Disruptor The Disruptor jar file is available from Maven Central and can be integrated into your dependency manager of choice from there. You can also download the bi...原创 2016-09-10 11:21:43 · 381 阅读 · 0 评论 -
Disruptor预备知识
1.sun.misc.Unsafe 示例 package com.java.magic.part4.exception; import java.lang.reflect.Field; import sun.misc.Unsafe; class Target{ int intParam = 3; long longParam; String s...原创 2016-09-28 16:08:22 · 128 阅读 · 0 评论 -
Disruptor3.2实现一个生产者与两个消费者
项目的目录结构如下: 1.定义事件 package org.fenxisoft.disruptor; //定义事件 public class LongEvent { private long value; public void set(long value){ this.value = value; } @Override ...原创 2016-09-28 16:55:28 · 483 阅读 · 0 评论