TinyEventBus 一个小而又快速的pubsub实现,具有Java 8和11的订阅者优先级和事件取消功能。 利用 void run() { Bus bus = new Bus (); bus . reg( Sub . of( System . out :: println)); bus . pub( " Hello World! " ); } class Listenable { Sub< Long> sub = Sub. of ( l -> ThreadLocalRandom . current (). setSeed ( l )); voi