com.github.cloudyrock.reactivehttp.ReactiveHttpBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactive-http Show documentation
Show all versions of reactive-http Show documentation
Annotation style wrapper for reactive web client. Right now only for Spring WebClient
The newest version!
package com.github.cloudyrock.reactivehttp;
public final class ReactiveHttpBuilder {
private ReactiveHttpBuilder() {
}
public static ReactiveHttpBuilderJackson jacksonBuilder() {
return ReactiveHttpBuilderImpl.getInstance(ReactiveHttpBuilderImpl.ParserType.JACKSON);
}
public static ReactiveHttpBuilderBase defaultBuilder() {
return ReactiveHttpBuilderImpl.getDefaultInstance();
}
}