Interface RequestBodyInserter
-
- All Superinterfaces:
BiFunction<Invocation,org.springframework.web.reactive.function.client.WebClient.RequestBodyUriSpec,org.springframework.web.reactive.function.client.WebClient.RequestHeadersUriSpec<?>>
- All Known Implementing Classes:
AbstractRequestBodyInserter,DataBuffersInserter,FormDataInserter,MultipartDataInserter,PublisherInserter,ResourceInserter,SingleBodyInserter,ValueInserter
public interface RequestBodyInserter extends BiFunction<Invocation,org.springframework.web.reactive.function.client.WebClient.RequestBodyUriSpec,org.springframework.web.reactive.function.client.WebClient.RequestHeadersUriSpec<?>>
The request body inserter.- Author:
- Christian Bremer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanInsert(Invocation invocation)Can insert boolean.-
Methods inherited from interface java.util.function.BiFunction
andThen, apply
-
-
-
-
Method Detail
-
canInsert
boolean canInsert(Invocation invocation)
Can insert boolean.- Parameters:
invocation- the invocation- Returns:
- the boolean
-
-