forked from payara/patched-src-jersey
-
Notifications
You must be signed in to change notification settings - Fork 0
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
407 additions
and
352 deletions.
There are no files selected for viewing
111 changes: 111 additions & 0 deletions
111
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,111 @@ | ||
/* | ||
* 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.Entity; | ||
import javax.ws.rs.core.GenericType; | ||
|
||
/* package */ abstract class AbstractNonSyncInvoker<T> { | ||
|
||
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
74 changes: 74 additions & 0 deletions
74
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,74 @@ | ||
/* | ||
* 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 { | ||
@Override | ||
public <R> CompletableFuture<R> get(InvocationCallback<R> callback) { | ||
return method("GET", callback); | ||
} | ||
|
||
@Override | ||
public <R> CompletableFuture<R> put(Entity<?> entity, InvocationCallback<R> callback) { | ||
return method("PUT", entity, callback); | ||
} | ||
|
||
@Override | ||
public <R> CompletableFuture<R> post(Entity<?> entity, InvocationCallback<R> callback) { | ||
return method("POST", entity, callback); | ||
} | ||
|
||
@Override | ||
public <R> CompletableFuture<R> delete(InvocationCallback<R> callback) { | ||
return method("DELETE", callback); | ||
} | ||
|
||
@Override | ||
public CompletableFuture<Response> head(InvocationCallback<Response> callback) { | ||
return method("HEAD", callback); | ||
} | ||
|
||
@Override | ||
public <R> CompletableFuture<R> options(InvocationCallback<R> callback) { | ||
return method("OPTIONS", callback); | ||
} | ||
|
||
@Override | ||
public <R> CompletableFuture<R> trace(InvocationCallback<R> callback) { | ||
return method("TRACE", callback); | ||
} | ||
|
||
@Override | ||
public abstract <R> CompletableFuture<R> method(String name, InvocationCallback<R> callback); | ||
|
||
@Override | ||
public abstract <R> CompletableFuture<R> method(String name, Entity<?> entity, InvocationCallback<R> 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); | ||
} |
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
Oops, something went wrong.