Skip to content

Instantly share code, notes, and snippets.

View pcbill's full-sized avatar

Shin Jan Wu pcbill

  • Kaohsiung, Taiwan
View GitHub Profile
@pcbill
pcbill / UdpServer.kt
Created June 12, 2018 00:49 — forked from codingtim/UdpServer.kt
Simple udp server with netty 4.1 and kotlin
import io.netty.bootstrap.Bootstrap
import io.netty.channel.ChannelHandlerContext
import io.netty.channel.SimpleChannelInboundHandler
import io.netty.channel.nio.NioEventLoopGroup
import io.netty.channel.socket.nio.NioDatagramChannel
import io.netty.util.CharsetUtil
import io.netty.util.concurrent.DefaultThreadFactory
import kotlinx.coroutines.experimental.async
import kotlinx.coroutines.experimental.newFixedThreadPoolContext