-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable to use AsyncInvoker in Rx client
Signed-off-by: Jan Supol <jan.supol@oracle.com>
- Loading branch information
Showing
8 changed files
with
431 additions
and
368 deletions.
There are no files selected for viewing
132 changes: 132 additions & 0 deletions
132
core-client/src/main/java/org/glassfish/jersey/client/AbstractNonSyncInvoker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* | ||
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
package org.glassfish.jersey.client; | ||
|
||
import org.glassfish.jersey.client.internal.LocalizationMessages; | ||
|
||
import javax.ws.rs.client.AsyncInvoker; | ||
import javax.ws.rs.client.Entity; | ||
import javax.ws.rs.client.SyncInvoker; | ||
import javax.ws.rs.core.GenericType; | ||
|
||
/* package */ abstract class AbstractNonSyncInvoker<T> { | ||
private final SyncInvoker invocationBuilder; | ||
|
||
protected AbstractNonSyncInvoker(SyncInvoker invocationBuilder) { | ||
if (invocationBuilder == null) { | ||
throw new IllegalArgumentException(LocalizationMessages.NULL_INVOCATION_BUILDER()); | ||
} | ||
this.invocationBuilder = invocationBuilder; | ||
} | ||
|
||
/** | ||
* Return invocation builder this reactive invoker was initialized with. | ||
* | ||
* @return non-null invocation builder. | ||
*/ | ||
protected SyncInvoker getSyncInvoker() { | ||
return invocationBuilder; | ||
} | ||
|
||
public T get() { | ||
return method("GET"); | ||
} | ||
|
||
public <R> T get(final Class<R> responseType) { | ||
return method("GET", responseType); | ||
} | ||
|
||
public <R> T get(final GenericType<R> responseType) { | ||
return method("GET", responseType); | ||
} | ||
|
||
public T put(final Entity<?> entity) { | ||
return method("PUT", entity); | ||
} | ||
|
||
public <R> T put(final Entity<?> entity, final Class<R> clazz) { | ||
return method("PUT", entity, clazz); | ||
} | ||
|
||
public <R> T put(final Entity<?> entity, final GenericType<R> type) { | ||
return method("PUT", entity, type); | ||
} | ||
|
||
public T post(final Entity<?> entity) { | ||
return method("POST", entity); | ||
} | ||
|
||
public <R> T post(final Entity<?> entity, final Class<R> clazz) { | ||
return method("POST", entity, clazz); | ||
} | ||
|
||
public <R> T post(final Entity<?> entity, final GenericType<R> type) { | ||
return method("POST", entity, type); | ||
} | ||
|
||
public T delete() { | ||
return method("DELETE"); | ||
} | ||
|
||
public <R> T delete(final Class<R> responseType) { | ||
return method("DELETE", responseType); | ||
} | ||
|
||
public <R> T delete(final GenericType<R> responseType) { | ||
return method("DELETE", responseType); | ||
} | ||
|
||
public T head() { | ||
return method("HEAD"); | ||
} | ||
|
||
public T options() { | ||
return method("OPTIONS"); | ||
} | ||
|
||
public <R> T options(final Class<R> responseType) { | ||
return method("OPTIONS", responseType); | ||
} | ||
|
||
public <R> T options(final GenericType<R> responseType) { | ||
return method("OPTIONS", responseType); | ||
} | ||
|
||
public T trace() { | ||
return method("TRACE"); | ||
} | ||
|
||
public <R> T trace(final Class<R> responseType) { | ||
return method("TRACE", responseType); | ||
} | ||
|
||
public <R> T trace(final GenericType<R> responseType) { | ||
return method("TRACE", responseType); | ||
} | ||
|
||
public abstract T method(final String name); | ||
|
||
public abstract <R> T method(final String name, final Class<R> responseType); | ||
|
||
public abstract <R> T method(final String name, final GenericType<R> responseType); | ||
|
||
public abstract T method(final String name, final Entity<?> entity); | ||
|
||
public abstract <R> T method(final String name, final Entity<?> entity, final Class<R> responseType); | ||
|
||
public abstract <R> T method(final String name, final Entity<?> entity, final GenericType<R> responseType); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
core-client/src/main/java/org/glassfish/jersey/client/CompletableFutureAsyncInvoker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
package org.glassfish.jersey.client; | ||
|
||
import javax.ws.rs.client.AsyncInvoker; | ||
import javax.ws.rs.client.Entity; | ||
import javax.ws.rs.client.InvocationCallback; | ||
import javax.ws.rs.core.GenericType; | ||
import javax.ws.rs.core.Response; | ||
import java.util.concurrent.CompletableFuture; | ||
|
||
/*package*/ abstract class CompletableFutureAsyncInvoker | ||
extends AbstractNonSyncInvoker<CompletableFuture> implements AsyncInvoker { | ||
|
||
protected CompletableFutureAsyncInvoker(JerseyInvocation.Builder invocationBuilder) { | ||
super(invocationBuilder); | ||
} | ||
|
||
@Override | ||
public <T> CompletableFuture<T> get(InvocationCallback<T> callback) { | ||
return method("GET", callback); | ||
} | ||
|
||
@Override | ||
public <T> CompletableFuture<T> put(Entity<?> entity, InvocationCallback<T> callback) { | ||
return method("PUT", callback); | ||
} | ||
|
||
@Override | ||
public <T> CompletableFuture<T> post(Entity<?> entity, InvocationCallback<T> callback) { | ||
return method("POST", callback); | ||
} | ||
|
||
@Override | ||
public <T> CompletableFuture<T> delete(InvocationCallback<T> callback) { | ||
return method("DELETE", callback); | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Response> head(InvocationCallback<Response> callback) { | ||
return method("HEAD", callback); | ||
} | ||
|
||
@Override | ||
public <T> CompletableFuture<T> options(InvocationCallback<T> callback) { | ||
return method("OPTIONS", callback); | ||
} | ||
|
||
@Override | ||
public <T> CompletableFuture<T> trace(InvocationCallback<T> callback) { | ||
return method("TRACE", callback); | ||
} | ||
|
||
@Override | ||
public abstract <T> CompletableFuture<T> method(String name, InvocationCallback<T> callback); | ||
|
||
@Override | ||
public abstract <T> CompletableFuture<T> method(String name, Entity<?> entity, InvocationCallback<T> callback); | ||
|
||
@Override | ||
public abstract <R> CompletableFuture method(String name, Entity<?> entity, Class<R> responseType); | ||
|
||
@Override | ||
public abstract <R> CompletableFuture method(String name, Entity<?> entity, GenericType<R> responseType); | ||
} |
Oops, something went wrong.