nio/mina/openfire
hxpjava1
毕业于武汉理工大学计算机系,12年开发架构经验,擅长java,k8s
展开
-
nio ioservice 类介绍
IoService 是一mina中非常重要的一个接口,他贯穿了整个mina 通信流程,建立远程连接、发送消息、连接等IoService接口提供了一些连接常用接口,在server端IoAcceptor继承了IoService,在client端 IoConnector 继承了IoService 完成客户端功能,IoService是创建服务的顶层接口,无论客户端还是服务端,都是从它继承实现的。转载 2015-03-20 16:31:56 · 1497 阅读 · 0 评论 -
最近读openfire源码发现一个bug
DefaultCache 320行代码public Object[] toArray() { Object[] array = new Object[size()]; Iterator it = iterator(); int i = 0; while (it.hasNext()) {原创 2015-04-19 15:32:29 · 676 阅读 · 0 评论 -
nio/mina/openfire阅读笔记
http://www.cnblogs.com/huangfox/archive/2013/12/04/3458272.htmlMina - 模拟同步请求http://www.cnblogs.com/huangfox/p/3461839.html原创 2015-03-21 16:14:48 · 1146 阅读 · 0 评论 -
ClearspaceMUCTranscriptManager的roomEvents是否存在并发问题
/** * Copyright (C) 2004-2009 Jive Software. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the Lice原创 2015-04-19 17:10:00 · 823 阅读 · 0 评论