com.sun.xml.ws.client.AsyncInvoker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-osgi Show documentation
Show all versions of webservices-osgi Show documentation
Metro Web Services Runtime OSGi Bundle
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.client;
import com.sun.xml.ws.api.message.Packet;
import com.sun.xml.ws.api.pipe.Fiber;
import com.sun.xml.ws.api.pipe.Tube;
import jakarta.xml.ws.WebServiceException;
/**
* Invokes {@link Tube}line asynchronously for the client's async API(for e.g.: Dispatch#invokeAsync}
* The concrete classes need to call {@link Stub#processAsync(AsyncResponseImpl, Packet, RequestContext, Fiber.CompletionCallback) } in
* run() method.
*
* @author Jitendra Kotamraju
*/
public abstract class AsyncInvoker implements Runnable {
/**
* Because of the object instantiation order,
* we can't take this as a constructor parameter.
*/
protected AsyncResponseImpl responseImpl;
protected boolean nonNullAsyncHandlerGiven;
/**
* Default constructor.
*/
protected AsyncInvoker() {
}
public void setReceiver(AsyncResponseImpl responseImpl) {
this.responseImpl = responseImpl;
}
public AsyncResponseImpl getResponseImpl() {
return responseImpl;
}
public void setResponseImpl(AsyncResponseImpl responseImpl) {
this.responseImpl = responseImpl;
}
public boolean isNonNullAsyncHandlerGiven() {
return nonNullAsyncHandlerGiven;
}
public void setNonNullAsyncHandlerGiven(boolean nonNullAsyncHandlerGiven) {
this.nonNullAsyncHandlerGiven = nonNullAsyncHandlerGiven;
}
@Override
public void run() {
try {
do_run();
} catch (WebServiceException e) {
throw e;
} catch (Throwable t) {
//Wrap it in WebServiceException
throw new WebServiceException(t);
}
}
public abstract void do_run();
}