KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bindings > ResponseCallback


1 package org.objectweb.celtix.bindings;
2
3 import org.objectweb.celtix.context.InputStreamMessageContext;
4
5 public interface ResponseCallback {
6
7     /**
8      * Used to dispatch a response from the <code>ClientTransport</code>
9      * back up to the binding. This is required for decoupled response
10      * processing.
11      *
12      * @param responseContext the context containing the InputStream
13      * response payload
14      */

15     void dispatch(InputStreamMessageContext responseContext);
16 }
17
Popular Tags