Searched defs:CompletionCallback (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWSEndpoint.java183 * calling {@link #schedule(Packet,CompletionCallback) } and
184 * {@link #schedule(Packet,CompletionCallback,FiberContextSwitchInterceptor)} methods.
195 * and eventually return it as a return value through {@link CompletionCallback}.
223 public final void schedule(@NotNull Packet request, @NotNull CompletionCallback callback ) {
230 * @see {@link #schedule(Packet, CompletionCallback)}
236 public abstract void schedule(@NotNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor );
238 public void process(@NotNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor ) {
246 public interface CompletionCallback { interface in class:WSEndpoint
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java182 private @Nullable CompletionCallback completionCallback;
193 public interface CompletionCallback { interface in class:Fiber
240 public void start(@NotNull Tube tubeline, @NotNull Packet request, @Nullable CompletionCallback completionCallback) {
248 public void runAsync(@NotNull Tube tubeline, @NotNull Packet request, @Nullable CompletionCallback completionCallback) {
451 * @see #start(Tube, Packet, CompletionCallback)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapter.java448 public void invokeAsync(final WSHTTPConnection con, final CompletionCallback callback) throws IOException {
481 endpoint.process(request, new WSEndpoint.CompletionCallback() {
500 public static final CompletionCallback NO_OP_COMPLETION_CALLBACK = new CompletionCallback() {
507 public interface CompletionCallback{ interface in class:HttpAdapter

Completed in 40 milliseconds