-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22855 from michalszynkiewicz/multipart-download
Multipart download in REST Client Reactive
- Loading branch information
Showing
25 changed files
with
2,818 additions
and
59 deletions.
There are no files selected for viewing
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
289 changes: 284 additions & 5 deletions
289
...c/main/java/io/quarkus/jaxrs/client/reactive/deployment/JaxrsClientReactiveProcessor.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
22 changes: 22 additions & 0 deletions
22
...rc/main/java/io/quarkus/jaxrs/client/reactive/runtime/impl/MultipartResponseDataBase.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,22 @@ | ||
package io.quarkus.jaxrs.client.reactive.runtime.impl; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import org.jboss.resteasy.reactive.client.spi.FieldFiller; | ||
import org.jboss.resteasy.reactive.client.spi.MultipartResponseData; | ||
|
||
public abstract class MultipartResponseDataBase implements MultipartResponseData { | ||
|
||
private final List<FieldFiller> fillers = new ArrayList<>(); | ||
|
||
@Override | ||
public List<FieldFiller> getFieldFillers() { | ||
return fillers; | ||
} | ||
|
||
@SuppressWarnings("unused") // used in generated classes | ||
public void addFiller(FieldFiller filler) { | ||
fillers.add(filler); | ||
} | ||
} |
Oops, something went wrong.