class type processor =The processor is the object that is notified when a new TCP connection is accepted. The processor has to include the protocol interpreter that reads and write data on this connection. See Defining Custom Processors for an example how to define a processor.object
..end
method process : when_done:(unit -> unit) ->
container -> Unix.file_descr -> string -> unit
The function must call when_done
to indicate that it processed
this connection completely.
The string argument is the protocol name.
method supported_ptypes : parallelization_type list