File tree Expand file tree Collapse file tree 15 files changed +21
-27
lines changed
CommonApi/src/main/java/com/r3944realms/dg_lab/api
Common/src/main/java/com/r3944realms/dg_lab Expand file tree Collapse file tree 15 files changed +21
-27
lines changed Original file line number Diff line number Diff line change 1818
1919import com .r3944realms .dg_lab .api .manager .IDGLabManager ;
2020import com .r3944realms .dg_lab .api .manager .Status ;
21- import com .r3944realms .dg_lab .websocket .PowerBoxWSClient ;
2221import com .r3944realms .dg_lab .api .websocket .message .Message ;
22+ import com .r3944realms .dg_lab .websocket .PowerBoxWSClient ;
2323import com .r3944realms .dg_lab .websocket .sharedData .ClientPowerBoxSharedData ;
2424
2525/**
Original file line number Diff line number Diff line change 1818
1919import com .r3944realms .dg_lab .api .manager .IDGLabManager ;
2020import com .r3944realms .dg_lab .api .manager .Status ;
21- import com .r3944realms .dg_lab .websocket .PowerBoxWSServer ;
2221import com .r3944realms .dg_lab .api .websocket .message .Message ;
22+ import com .r3944realms .dg_lab .websocket .PowerBoxWSServer ;
2323import com .r3944realms .dg_lab .websocket .sharedData .ServerPowerBoxSharedData ;
2424
2525/**
Original file line number Diff line number Diff line change 1717package com .r3944realms .dg_lab .utils .timeTask ;
1818
1919
20- import com .r3944realms .dg_lab .utils .annoation .NeedCompletedInFuture ;
2120import com .r3944realms .dg_lab .api .websocket .message .Message ;
2221import com .r3944realms .dg_lab .api .websocket .message .PowerBoxMessage ;
2322import com .r3944realms .dg_lab .api .websocket .message .role .PlaceholderRole ;
2423import com .r3944realms .dg_lab .api .websocket .message .role .WebSocketClientRole ;
24+ import com .r3944realms .dg_lab .utils .annoation .NeedCompletedInFuture ;
2525import io .netty .channel .ChannelHandlerContext ;
2626
2727import java .util .TimerTask ;
Original file line number Diff line number Diff line change 1818
1919import com .r3944realms .dg_lab .DgLab ;
2020import com .r3944realms .dg_lab .api .manager .Status ;
21+ import com .r3944realms .dg_lab .api .websocket .message .Message ;
2122import com .r3944realms .dg_lab .utils .stringUtils .StringHandlerUtil ;
2223import com .r3944realms .dg_lab .utils .stringUtils .UrlValidator ;
23- import com .r3944realms .dg_lab .api .websocket .message .Message ;
2424import io .netty .bootstrap .Bootstrap ;
2525import io .netty .channel .*;
2626import io .netty .channel .nio .NioEventLoopGroup ;
3434import io .netty .handler .codec .http .websocketx .WebSocketVersion ;
3535import io .netty .handler .ssl .SslContext ;
3636import io .netty .handler .ssl .SslContextBuilder ;
37- import org .jetbrains .annotations .NotNull ;
3837import org .jetbrains .annotations .Nullable ;
3938import org .slf4j .Logger ;
4039import org .slf4j .LoggerFactory ;
Original file line number Diff line number Diff line change 1717package com .r3944realms .dg_lab .websocket ;
1818
1919
20- import com .google .gson .annotations .Since ;
2120import com .r3944realms .dg_lab .DgLab ;
2221import com .r3944realms .dg_lab .api .manager .Status ;
22+ import com .r3944realms .dg_lab .api .websocket .message .Message ;
2323import com .r3944realms .dg_lab .utils .stringUtils .UrlValidator ;
2424import com .r3944realms .dg_lab .websocket .handler .server .HttpRequestHandler ;
25- import com .r3944realms .dg_lab .api .websocket .message .Message ;
2625import io .netty .bootstrap .ServerBootstrap ;
2726import io .netty .channel .*;
2827import io .netty .channel .nio .NioEventLoopGroup ;
3938import org .slf4j .Logger ;
4039import org .slf4j .LoggerFactory ;
4140
42- import javax .net .ssl .SSLContext ;
4341import javax .net .ssl .SSLException ;
4442import java .io .File ;
4543import java .util .concurrent .CompletableFuture ;
Original file line number Diff line number Diff line change 1717package com .r3944realms .dg_lab .websocket ;
1818
1919import com .r3944realms .dg_lab .api .operation .ClientOperation ;
20- import com .r3944realms .dg_lab .websocket .handler .client .ClientDLPBHandler ;
21- import com .r3944realms .dg_lab .websocket .handler .client .ClientDLPBHandlerContextWrapper ;
22- import com .r3944realms .dg_lab .websocket .handler .client .DefaultClientOperation ;
2320import com .r3944realms .dg_lab .api .websocket .message .Message ;
2421import com .r3944realms .dg_lab .api .websocket .message .PowerBoxMessage ;
2522import com .r3944realms .dg_lab .api .websocket .message .role .WebSocketClientRole ;
23+ import com .r3944realms .dg_lab .websocket .handler .client .ClientDLPBHandler ;
24+ import com .r3944realms .dg_lab .websocket .handler .client .ClientDLPBHandlerContextWrapper ;
25+ import com .r3944realms .dg_lab .websocket .handler .client .DefaultClientOperation ;
2626import com .r3944realms .dg_lab .websocket .sharedData .ClientPowerBoxSharedData ;
2727import io .netty .channel .ChannelPipeline ;
2828import io .netty .handler .codec .http .websocketx .TextWebSocketFrame ;
Original file line number Diff line number Diff line change 1717package com .r3944realms .dg_lab .websocket ;
1818
1919import com .r3944realms .dg_lab .api .operation .ServerOperation ;
20- import com .r3944realms .dg_lab .websocket .handler .server .DefaultServerOperation ;
21- import com .r3944realms .dg_lab .websocket .handler .server .ServerDLPBHandler ;
22- import com .r3944realms .dg_lab .websocket .handler .server .ServerDLPBHandlerContextWrapper ;
2320import com .r3944realms .dg_lab .api .websocket .message .Message ;
2421import com .r3944realms .dg_lab .api .websocket .message .PowerBoxMessage ;
2522import com .r3944realms .dg_lab .api .websocket .message .role .WebSocketServerRole ;
23+ import com .r3944realms .dg_lab .websocket .handler .server .DefaultServerOperation ;
24+ import com .r3944realms .dg_lab .websocket .handler .server .ServerDLPBHandler ;
25+ import com .r3944realms .dg_lab .websocket .handler .server .ServerDLPBHandlerContextWrapper ;
2626import com .r3944realms .dg_lab .websocket .sharedData .ServerPowerBoxSharedData ;
2727import io .netty .channel .ChannelHandlerContext ;
2828import io .netty .channel .ChannelPipeline ;
Original file line number Diff line number Diff line change 1616
1717package com .r3944realms .dg_lab .websocket .handler .client ;
1818
19+ import com .r3944realms .dg_lab .api .websocket .sharedData .ISharedData ;
1920import com .r3944realms .dg_lab .websocket .handler .AbstractDgLabPowerBoxHandler ;
2021import com .r3944realms .dg_lab .websocket .handler .IAttachSharedData ;
21- import com .r3944realms .dg_lab .api .websocket .sharedData .ISharedData ;
2222import io .netty .channel .ChannelHandler ;
2323
2424/**
Original file line number Diff line number Diff line change 1818
1919import com .r3944realms .dg_lab .api .operation .ClientOperation ;
2020import com .r3944realms .dg_lab .api .operation .IOperation ;
21- import com .r3944realms .dg_lab .websocket .handler .AbstractDgLabPowerBoxHandlerContextWrapper ;
2221import com .r3944realms .dg_lab .api .websocket .message .PowerBoxMessage ;
2322import com .r3944realms .dg_lab .api .websocket .message .data .PowerBoxData ;
2423import com .r3944realms .dg_lab .api .websocket .message .role .Role ;
2524import com .r3944realms .dg_lab .api .websocket .message .role .WebSocketClientRole ;
2625import com .r3944realms .dg_lab .api .websocket .message .role .WebSocketServerRole ;
2726import com .r3944realms .dg_lab .api .websocket .message .role .type .RoleType ;
28- import com .r3944realms .dg_lab .websocket .sharedData .ClientPowerBoxSharedData ;
2927import com .r3944realms .dg_lab .api .websocket .sharedData .ISharedData ;
28+ import com .r3944realms .dg_lab .websocket .handler .AbstractDgLabPowerBoxHandlerContextWrapper ;
29+ import com .r3944realms .dg_lab .websocket .sharedData .ClientPowerBoxSharedData ;
3030import io .netty .channel .ChannelHandlerContext ;
3131import io .netty .handler .codec .http .websocketx .TextWebSocketFrame ;
3232
Original file line number Diff line number Diff line change 1919import com .r3944realms .dg_lab .api .operation .ServerOperation ;
2020import com .r3944realms .dg_lab .api .websocket .message .PowerBoxMessage ;
2121
22- import java .util .UUID ;
23-
2422/**
2523 * The type Default server operation.
2624 */
You can’t perform that action at this time.
0 commit comments