diff --git a/src/java/com/threerings/presents/data/InvocationMarshaller.java b/src/java/com/threerings/presents/data/InvocationMarshaller.java index 91e593314..87da068c4 100644 --- a/src/java/com/threerings/presents/data/InvocationMarshaller.java +++ b/src/java/com/threerings/presents/data/InvocationMarshaller.java @@ -79,6 +79,17 @@ public class InvocationMarshaller _invId = name; } + /** + * Indicates that this listener will not be responded-to, and that + * this is normal behavior. + */ + public void setNoResponse () + { + // we enact this by merely doing the same thing that we normally + // do during a response. + _invId = null; + } + // documentation inherited from interface public void requestFailed (String cause) {