22 lines
840 B
TypeScript
22 lines
840 B
TypeScript
const ChannelInboundHandlerAdapter = Java.type('io.netty.channel.ChannelInboundHandlerAdapter')
|
|
|
|
export abstract class WebSocketHandlerAdapter {
|
|
private _Handler
|
|
constructor() {
|
|
let ChannelInboundHandlerAdapterImpl = Java.extend(ChannelInboundHandlerAdapter, {
|
|
channelRead: this.channelRead.bind(this),
|
|
channelInactive: this.channelInactive.bind(this),
|
|
channelUnregistered: this.exceptionCaught.bind(this),
|
|
exceptionCaught: this.exceptionCaught.bind(this)
|
|
})
|
|
this._Handler = new ChannelInboundHandlerAdapterImpl()
|
|
}
|
|
abstract channelRead(ctx: any, channel: any)
|
|
abstract channelInactive(ctx: any)
|
|
abstract channelUnregistered(ctx: any)
|
|
abstract exceptionCaught(ctx: any, cause: Error)
|
|
getHandler() {
|
|
return this._Handler
|
|
}
|
|
}
|