pinpoint 的业务对象(BO)在 pinpoint-commons-server 工程中。hbase 中每一个表都对应其中的一个类。
例如:AgentEvent 表,对应于 AgentEventBo 类。
pinpoint-commons-server 中的 BO 类,是被 web 和 collector 所共享的,对于 collector 来说,它执行插入操作,所以其 dao 层的 AgentEventDao
提供了 void insert(AgentEventBo agentEventBo);
方法。
AsynchronousServerSocketChannel 和 AsynchronousSocketChannel 的实现借助于 AsynchronousChannelGroup 的线程池,当执行一个异步的时候,可以将这个异步操作提交到 AsynchronousChannelGroup 的线程池中。