Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Kwan的解忧杂货铺@新空间代码工作室
netty-demo
提交
e1de8347
N
netty-demo
项目概览
Kwan的解忧杂货铺@新空间代码工作室
/
netty-demo
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
N
netty-demo
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e1de8347
编写于
4月 23, 2023
作者:
Kwan的解忧杂货铺@新空间代码工作室
🐭
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:添加注释
上级
1bcc35c5
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
29 addition
and
5 deletion
+29
-5
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c1_基础/HelloClient.java
...om/kwan/shuyu/heima/netty_04_netty/c1_基础/HelloClient.java
+8
-0
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c1_基础/HelloServer.java
...om/kwan/shuyu/heima/netty_04_netty/c1_基础/HelloServer.java
+8
-0
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_01_EventLoopGroup.java
...netty_04_netty/c2_组件/TestEventLoop_01_EventLoopGroup.java
+1
-1
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_02_submit.java
...u/heima/netty_04_netty/c2_组件/TestEventLoop_02_submit.java
+1
-1
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_03_scheduleAtFixedRate.java
..._04_netty/c2_组件/TestEventLoop_03_scheduleAtFixedRate.java
+1
-1
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_04_Client.java
...u/heima/netty_04_netty/c2_组件/TestEventLoop_04_Client.java
+8
-0
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_04_server.java
...u/heima/netty_04_netty/c2_组件/TestEventLoop_04_server.java
+1
-1
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_05_group.java
...yu/heima/netty_04_netty/c2_组件/TestEventLoop_05_group.java
+1
-1
未找到文件。
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c1_基础/HelloClient.java
浏览文件 @
e1de8347
...
...
@@ -8,6 +8,14 @@ import io.netty.handler.codec.string.StringEncoder;
import
java.net.InetSocketAddress
;
/**
* 客户端
*
* @author : qinyingjie
* @version : 2.2.0
* @date : 2023/4/23 16:42
*/
public
class
HelloClient
{
public
static
void
main
(
String
[]
args
)
throws
InterruptedException
{
//1.启动类
...
...
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c1_基础/HelloServer.java
浏览文件 @
e1de8347
...
...
@@ -9,6 +9,14 @@ import io.netty.channel.socket.nio.NioServerSocketChannel;
import
io.netty.channel.socket.nio.NioSocketChannel
;
import
io.netty.handler.codec.string.StringDecoder
;
/**
* 服务端
*
* @author : qinyingjie
* @version : 2.2.0
* @date : 2023/4/23 16:42
*/
public
class
HelloServer
{
public
static
void
main
(
String
[]
args
)
{
//启动器,负责组装netty组件
...
...
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_01_EventLoopGroup.java
浏览文件 @
e1de8347
...
...
@@ -7,7 +7,7 @@ import io.netty.channel.nio.NioEventLoopGroup;
import
lombok.extern.slf4j.Slf4j
;
/**
* 测试EventLoop
* 测试EventLoop
Group
*
* @author : qinyingjie
* @version : 2.2.0
...
...
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_02_submit.java
浏览文件 @
e1de8347
...
...
@@ -7,7 +7,7 @@ import io.netty.channel.nio.NioEventLoopGroup;
import
lombok.extern.slf4j.Slf4j
;
/**
*
测试EventLoop
*
提交普通任务
*
* @author : qinyingjie
* @version : 2.2.0
...
...
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_03_scheduleAtFixedRate.java
浏览文件 @
e1de8347
...
...
@@ -8,7 +8,7 @@ import lombok.extern.slf4j.Slf4j;
import
java.util.concurrent.TimeUnit
;
/**
*
测试EventLoop
*
执行定时任务
*
* @author : qinyingjie
* @version : 2.2.0
...
...
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_04_Client.java
浏览文件 @
e1de8347
...
...
@@ -8,6 +8,14 @@ import io.netty.handler.codec.string.StringEncoder;
import
java.net.InetSocketAddress
;
/**
* 客户端
*
* @author : qinyingjie
* @version : 2.2.0
* @date : 2023/4/23 16:43
*/
public
class
TestEventLoop_04_Client
{
public
static
void
main
(
String
[]
args
)
throws
InterruptedException
{
//1.启动类
...
...
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_04_server.java
浏览文件 @
e1de8347
...
...
@@ -14,7 +14,7 @@ import lombok.extern.slf4j.Slf4j;
import
java.nio.charset.Charset
;
/**
*
测试EventLoop
*
服务端
*
* @author : qinyingjie
* @version : 2.2.0
...
...
src/main/java/com/kwan/shuyu/heima/netty_04_netty/c2_组件/TestEventLoop_05_group.java
浏览文件 @
e1de8347
...
...
@@ -11,7 +11,7 @@ import lombok.extern.slf4j.Slf4j;
import
java.nio.charset.Charset
;
/**
*
测试EventLoo
p
*
NioEventLoopGrou
p
*
* @author : qinyingjie
* @version : 2.2.0
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录