Package org.jboss.netty.example.factorial
-
Class Summary Class Description BigIntegerDecoder Decodes the binary representation of aBigInteger
prepended with a magic number ('F' or 0x46) and a 32-bit integer length prefix into aBigInteger
instance.FactorialClient Sends a sequence of integers to aFactorialServer
to calculate the factorial of the specified integer.FactorialClientHandler Handler for a client-side channel.FactorialClientPipelineFactory Creates a newly configuredChannelPipeline
for a client-side channel.FactorialServer Receives a sequence of integers from aFactorialClient
to calculate the factorial of the specified integer.FactorialServerHandler Handler for a server-side channel.FactorialServerPipelineFactory Creates a newly configuredChannelPipeline
for a server-side channel.NumberEncoder Encodes aNumber
into the binary representation prepended with a magic number ('F' or 0x46) and a 32-bit length prefix.