1 20 package org.apache.mina.filter.codec; 21 22 import org.apache.mina.common.IoSession; 23 24 32 public abstract class ProtocolDecoderAdapter implements ProtocolDecoder { 33 34 38 public void finishDecode(IoSession session, ProtocolDecoderOutput out) 39 throws Exception { 40 } 41 42 46 public void dispose(IoSession session) throws Exception { 47 } 48 } 49 | Popular Tags |