1 18 package org.apache.activemq.command; 19 20 import java.io.IOException ; 21 22 import org.apache.activemq.wireformat.WireFormat; 23 24 public interface MarshallAware { 25 26 public void beforeMarshall(WireFormat wireFormat) throws IOException ; 27 public void afterMarshall(WireFormat wireFormat) throws IOException ; 28 29 public void beforeUnmarshall(WireFormat wireFormat) throws IOException ; 30 public void afterUnmarshall(WireFormat wireFormat) throws IOException ; 31 32 } 33 | Popular Tags |