Guava入门~EventBus~细粒度订阅

将交易细分为买/卖:

public class SellEvent extends TradeAccountEvent {public SellEvent(TradeAccount tradeAccount, double amount, Date tradExecutionTime) {super(tradeAccount, amount, tradExecutionTime, TradeType.SELL);}
}public class BuyEvent extends TradeAccountEvent {public BuyEvent(TradeAccount tradeAccount, double amount, Date tradExecutionTime) {super(tradeAccount, amount, tradExecutionTime, TradeType.BUY);}
}

处理类也区分

public class TradeSellAuditor {private List<SellEvent> sellEvents = Lists.newArrayList();public TradeSellAuditor(EventBus eventBus) {eventBus.register(this);}@Subscribepublic void auditSell(SellEvent sellEvent){sellEvents.add(sellEvent);System.out.println("Received SellEvent "+sellEvent);}public List<SellEvent> getSellEvents() {return sellEvents;}
}
public class TradeBuyAuditor {private List<BuyEvent> buyEvents = Lists.newArrayList();public TradeBuyAuditor(EventBus eventBus) {eventBus.register(this);}@Subscribepublic void auditBuy(BuyEvent buyEvent){buyEvents.add(buyEvent);System.out.println("Received TradeBuyEvent "+buyEvent);}public List<BuyEvent> getBuyEvents() {return buyEvents;}
}

发送事件区分类型

package bbejeck.guava.chapter7.publisher;import bbejeck.guava.chapter7.events.BuyEvent;
import bbejeck.guava.chapter7.events.SellEvent;
import bbejeck.guava.chapter7.events.TradeAccountEvent;
import bbejeck.guava.chapter7.events.TradeType;
import bbejeck.guava.common.model.TradeAccount;
import com.google.common.eventbus.EventBus;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;import java.util.Date;/*** User: Bill Bejeck* Date: 4/26/13* Time: 11:29 AM*/
public class BuySellTradeExecutor {private EventBus eventBus;public BuySellTradeExecutor(EventBus eventBus) {this.eventBus = eventBus;}public void executeTrade(TradeAccount tradeAccount, double amount, TradeType tradeType) {TradeAccountEvent tradeAccountEvent = processTrade(tradeAccount, amount, tradeType);eventBus.post(tradeAccountEvent);}private TradeAccountEvent processTrade(TradeAccount tradeAccount, double amount, TradeType tradeType) {Date executionTime = new Date();String message = String.format("Processed trade for %s of amount %n type %s @ %s", tradeAccount, amount, tradeType, executionTime);TradeAccountEvent tradeAccountEvent;if (tradeType.equals(TradeType.BUY)) {tradeAccountEvent = new BuyEvent(tradeAccount, amount, executionTime);} else {tradeAccountEvent = new SellEvent(tradeAccount, amount, executionTime);}System.out.println(message);return tradeAccountEvent;}
}

测试示例

package bbejeck.guava.chapter7.subscriber;import bbejeck.guava.chapter7.EventBusTestBase;
import bbejeck.guava.chapter7.subscriber.complex.TradeBuyAuditor;
import bbejeck.guava.chapter7.subscriber.complex.TradeSellAuditor;
import com.google.common.eventbus.EventBus;
import org.junit.Before;
import org.junit.Test;import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;/*** User: Bill Bejeck* Date: 4/28/13* Time: 8:49 PM*/
public class TradeBuySellAuditorTest extends EventBusTestBase  {private TradeBuyAuditor buyAuditor;private TradeSellAuditor sellAuditor;private EventBus eventBus;@Beforepublic void setUp(){eventBus = getEventBus();buyAuditor = new TradeBuyAuditor(eventBus);sellAuditor = new TradeSellAuditor(eventBus);}@Testpublic void sellOnlyTest(){eventBus.post(sellEventBuilder().build());assertThat(sellAuditor.getSellEvents().size(),is(1));assertThat(buyAuditor.getBuyEvents().isEmpty(),is(true));}@Testpublic void buyOnlyTest(){eventBus.post(buyEventBuilder().build());assertThat(sellAuditor.getSellEvents().isEmpty(),is(true));assertThat(buyAuditor.getBuyEvents().size(),is(1));}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/495550.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

转:Python中的文件和目录操作

转自:http://tech.it168.com/a2009/0703/600/000000600339.shtml 【IT168 技术文档】摘要&#xff1a;对于文件和目录的处理&#xff0c;虽然可以通过操作系统命令来完成&#xff0c;但是Python语言为了便于开发人员以编程的方式处理相关工作&#xff0c;提供了许多处理文件和目…

ELK 日志系统

Elastic 官方文档&#xff1a;https://www.elastic.co/guide/index.html elasticsearch github&#xff1a;https://github.com/elastic/elasticsearch logstash github&#xff1a;https://github.com/elastic/logstash kibana github&#xff1a;https://github.com/elastic…

深入浅出:Microsoft分布式事务处理协调器

深入浅出&#xff1a;Microsoft分布式事务处理协调器 http://www.searchdatabase.com.cn/showcontent_44713.htmposted on 2011-03-19 16:19 Fanr_Zh 阅读(...) 评论(...) 编辑 收藏 转载于:https://www.cnblogs.com/Amaranthus/archive/2011/03/19/1988870.html

洪小文: 今天的AI只是一个黑盒,仍需与HI密切配合

来源&#xff1a;微软研究院AI头条摘要&#xff1a;在刚刚结束的微软Build 2018开发者大会上&#xff0c;微软小娜展示了自己是如何智能地预定会议室的&#xff0c;似与常人无异&#xff0c;但实际上人工智能还远不像你想的那么聪明&#xff01;微软亚洲研究院院长洪小文在接受…

Kibana Guide ( Kibana 向导 )

Kibana Guide 官网地址&#xff1a;https://www.elastic.co/guide/en/kibana/current/index.html Kibana 用户指南&#xff08;构建你自己的仪表盘&#xff09;&#xff1a;https://segmentfault.com/a/1190000015140923 Kibana快速上手&#xff1a;https://www.jianshu.com/…

Guava入门~EventBus~AsyncEventBus

AsyncEventBus 示例 package bbejeck.guava.chapter7.async;import bbejeck.guava.chapter7.EventBusTestBase; import bbejeck.guava.chapter7.subscriber.SlowProcessSubscriber; import com.google.common.eventbus.AsyncEventBus; import org.junit.Before; import org.ju…

iisapp 查看PID所对应的IIS应用程序池及详细介绍

从IIS6.0可以在IIS中架设多个站点并给每个站点指定不同的应用程序池&#xff0c;分别对各程序池进行CPU,内存的使用限制。而每一个应用程序池会在任务管理器中对应一个系统进程(w3wp.exe)&#xff0c;每一个进程都有一个PID来标识。当某个w3wp.exe进程占用资源很高的时候如何快…

Python 操作 Elasticsearch 实现 增 删 改 查

Github 地址&#xff1a;https://github.com/elastic/elasticsearch-py/blob/master/docs/index.rst 官网地址&#xff1a;https://elasticsearch-py.readthedocs.io/en/latest/index.html Python-ElasticSearch&#xff0c;python对ES进行写入、更新、删除、搜索&#xff1a…

周鸿祎:quot;安全大脑quot;将成智能经济时代的网络安全中枢

来源&#xff1a;中国经济网摘要&#xff1a;“安全大脑”是一个分布式智能系统,综合利用ABCI(大数据、人工智能、云计算、IoT智能感知、区块链)等新技术,保护国家、国防、关键基础设施、社会及个人的网络安全。5月16日,第二届世界智能大会在天津召开,360集团董事长兼CEO周鸿祎…

Guava入门~EventBus~DeadEvents

当调用EventBus.post(event)&#xff0c;事件没有订阅者&#xff0c;则会封装成DeadEvent public class DeadEventSubscriber {private static final Logger logger Logger.getLogger(DeadEventSubscriber.class);public DeadEventSubscriber(EventBus eventBus) {eventBus.r…

OpenAI解析「AI算力」:3个半月翻一倍,6年超过30万倍

来源&#xff1a;OpenAI「雷克世界」编译&#xff1a;嗯~是阿童木呀、KABUDA、EVA摘要&#xff1a;近日&#xff0c;OpenAI发布了一份分析报告显示&#xff0c;自2012年以来&#xff0c;在最大规模的人工智能训练中所使用的计算量呈指数级增长&#xff0c;3.5个月的时间翻一倍&…

18.图的接口类

namespace DSList{public interface IGraph<T>{int GetNumOfVertex(); //获取顶点的数目int GetNumOfEdge(); //获取边的数目bool IsGvNode(GvNode<T> v); //v是否为图的顶点int GetIndex(GvNode<T> v); //获得顶点V在顶点数组中的索引…

设计模式--单例模式

实验7&#xff1a;单例模式 本次实验属于模仿型实验&#xff0c;通过本次实验学生将掌握以下内容&#xff1a; 1、理解单例模式的动机&#xff0c;掌握该模式的结构&#xff1b; 2、能够利用单列模式解决实际问题。 [实验任务]&#xff1a;学号的单一 仿照课堂的身份证的…

DebugView 使用技巧

From&#xff1a;https://blog.csdn.net/bcbobo21cn/article/details/52401087 DbgView简介 1、什么是 DebugView ? DebugView是一个系统调试信息输出的捕获工具。debugview 是 Sysinternals 公司的系列调试工具。debugview 可以捕获程序中由 TRACE(debug版本)和 OutputDebug…

儿子转眼就长大:Hinton、LeCun、Bengio 口述神经网络简史

1960 年的水牛城&#xff0c;工作人员正在「精细调节」一台感知机作者&#xff1a; 杨晓凡 刘鹏 思颖摘要&#xff1a;几位最偏执的人坚持到了春天来临谷歌母公司 Alphabet&#xff0c;亚马逊&#xff0c;苹果&#xff0c;Facebook 和微软这些全球最大的科技巨头们&#xff0c;…

VHDL 语法小点(1)

1.对于以时钟触发的计数器&#xff0c;一般从0到N-1&#xff0c;共N。当时钟上升沿来临时&#xff0c;对于可能用于判决的计数器的值&#xff0c;为上一次时钟周期内所修改的值&#xff0c;是上个时钟周期的值&#xff0c;很重要。 2.如何消除毛刺&#xff1a;可以通过用寄存器…

VS2019 更新MSDN并创建快捷方式

From&#xff1a;https://www.cnblogs.com/Lzl678/p/10686324.html VS2017 下载离线MSDN文档&#xff1a;https://blog.csdn.net/sinat_26222723/article/details/79109653 1. 在线 MSDN 使用方法 1. 进入微软中文官网&#xff1a;https://www.microsoft.com/zh-cn/ 2. 所有…

贝叶斯网络之父Judea Pearl:要建立真正的人工智能,少不了因果推理

来源&#xff1a;专知参与 | Yingying, Xiaowen, Sanglei 2011年图灵奖得主&#xff0c;贝叶斯网络之父Judea Pearl认为现在人工智能的发展进入的新的瓶颈期&#xff0c;各种新的成果不过本质上不过是重复简单的“曲线拟合”工作。Pearl 认为人们应该更关注人工智能中的因果&am…

结构思考力~结构思考力的四个基本特点

反例 “懂事长您好&#xff01;刘经理来电话说系统出现突发状况&#xff0c;4点钟他无法参加会议了。小张说他晚一点开会没关系&#xff0c;明天再开也可以&#xff0c;但最好别11点30分之前开。可是会议室明天已经被别人预订了&#xff0c;但是星期五空着的。王总的秘书说&am…

【转】 VC MFC 钩子 实现 自绘 窗体 标题栏 非客户区

效果&#xff1a; 程序&#xff1a; #if !defined(_LJF_LJFHOOK_H)#define _LJF_LJFHOOK_H #if _MSC_VER > 1000#pragma once#endif #include <afxtempl.h>#define sLjfDialogOldProcTag _T("CDialog_oldProc")#define SYSBTN_NON -1#define SYSBTN_MIN 0#d…