1 24 25 package org.objectweb.dream.message.codec; 26 27 import java.io.IOException ; 28 29 import org.objectweb.dream.message.Message; 30 31 35 public interface MessageCodec 36 { 37 38 39 String ITF_NAME = "message-codec"; 40 41 49 void encode(CodecInputOutput cio, Message message) throws IOException ; 50 51 59 Message decode(CodecInputOutput cio) throws IOException ; 60 } | Popular Tags |