This commit is contained in:
wentch
2016-01-14 17:03:30 +08:00
parent 3621401c8c
commit 02a2a91737
11 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
/**
* 提供RedKale服务器的启动、初始化和加载功能
*/
package org.redkale.boot;

View File

@@ -0,0 +1,4 @@
/**
* 提供BSON的序列化和反解析功能
*/
package org.redkale.convert.bson;

View File

@@ -0,0 +1,4 @@
/**
* Convert的基本数据的Coder实现
*/
package org.redkale.convert.ext;

View File

@@ -0,0 +1,4 @@
/**
* 提供JSON的序列化和反解析功能
*/
package org.redkale.convert.json;

View File

@@ -0,0 +1,4 @@
/**
* 提供数据的序列化和反解析功能
*/
package org.redkale.convert;

View File

@@ -0,0 +1,4 @@
/**
* HTTP协议包,提供HTTP协议服务器
*/
package org.redkale.net.http;

View File

@@ -0,0 +1,4 @@
/**
* 网络TCP/UDP基础服务包
*/
package org.redkale.net;

View File

@@ -0,0 +1,4 @@
/**
* SNCP协议包,提供SNCP协议服务器
*/
package org.redkale.net.sncp;

View File

@@ -0,0 +1,4 @@
/**
* Service接口和模式配置包
*/
package org.redkale.service;

View File

@@ -0,0 +1,4 @@
/**
* 数据源(数据库、缓存)操作包
*/
package org.redkale.source;

View File

@@ -0,0 +1,4 @@
/**
* 提供RedKale服务的监控、动态部署、数据收集功能
*/
package org.redkale.watch;