git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@742888 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bosanac Dejan 2009-02-10 08:37:12 +00:00
parent 586ea12d1e
commit 60d6c36ff2
2 changed files with 10 additions and 0 deletions

View File

@ -63,4 +63,9 @@ public abstract class TextWireFormat implements WireFormat {
return unmarshal(dis);
}
public boolean inReceive() {
// TODO Implement for inactivity monitor
return false;
}
}

View File

@ -216,4 +216,9 @@ public class XmppWireFormat implements WireFormat {
public void setVersion(int version) {
this.version = version;
}
public boolean inReceive() {
// TODO Implement for inactivity monitor
return false;
}
}