org.apache.mina.filter.codec
Interface ProtocolCodecFactory

All Known Implementing Classes:
DemuxingProtocolCodecFactory, NettyCodecFactory, ObjectSerializationCodecFactory, PrefixedStringCodecFactory, TextLineCodecFactory

public interface ProtocolCodecFactory

Provides ProtocolEncoder and ProtocolDecoder which translates binary or protocol specific data into message object and vice versa.

Please refer to ReverserProtocolProvider example.

Version:
$Rev: 671827 $, $Date: 2008-06-26 10:49:48 +0200 (Do, 26 Jun 2008) $
Author:
The Apache MINA Project (dev@mina.apache.org)

Method Summary
 ProtocolDecoder getDecoder(IoSession session)
          Returns a new (or reusable) instance of ProtocolDecoder which decodes binary or protocol-specific data into message objects.
 ProtocolEncoder getEncoder(IoSession session)
          Returns a new (or reusable) instance of ProtocolEncoder which encodes message objects into binary or protocol-specific data.
 

Method Detail

getEncoder

ProtocolEncoder getEncoder(IoSession session)
                           throws Exception
Returns a new (or reusable) instance of ProtocolEncoder which encodes message objects into binary or protocol-specific data.

Throws:
Exception

getDecoder

ProtocolDecoder getDecoder(IoSession session)
                           throws Exception
Returns a new (or reusable) instance of ProtocolDecoder which decodes binary or protocol-specific data into message objects.

Throws:
Exception


Copyright © 2004-2009 Apache MINA Project. All Rights Reserved.