Skip to content

mcroydon/scala-echo-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scala-echo-server

This is a Scala port of EchoServer and EchoServerHandler from the Netty documentation.

To run the example, make sure you have Scala and simple-build-tool installed, then:

$ sbt clean update compile run

This should download Netty, compile the code and start the echo server:

[info] Building project echo 0.2.1-SNAPSHOT against Scala 2.8.1
...
[info] Running com.postneo.protocols.echo.EchoServer

You can now telnet to the echo server and enter a line of text to be echoed back:

$ telnet 127.0.0.1 8888
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
hello?
hello?

The server implementation can be found in src/main/scala/com/postneo/protocols/echo/EchoServer.scala and the handler is in src/main/scala/com/postneo/protocols/echo/EchoServer.scala.

About

A simple echo server ported from the Netty Java documentation.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages