commit | author | age | ||
a18bfa | 1 | package com.codingapi.tx.netty.service; |
Z | 2 | |
3 | import io.netty.channel.ChannelHandlerContext; /** | |
4 | * create by lorne on 2017/11/11 | |
5 | */ | |
6 | public interface NettyControlService { | |
7 | void restart(); | |
8 | ||
9 | ||
10 | void executeService(ChannelHandlerContext ctx, String json); | |
11 | ||
12 | ||
13 | void uploadModelInfo(); | |
14 | ||
15 | } |