Interface FormPartEvent
- All Superinterfaces:
- PartEvent
Represents an event triggered for a form field. Contains the
 value, besides the headers
 exposed through 
PartEvent.
 Multipart form fields trigger one FormPartEvent, as
 described here.
- Since:
- 6.0
- Author:
- Arjen Poutsma
- 
Method SummaryModifier and TypeMethodDescriptionstatic reactor.core.publisher.Mono<FormPartEvent>static reactor.core.publisher.Mono<FormPartEvent>create(String name, String value, Consumer<HttpHeaders> headersConsumer) value()Return the form field value.
- 
Method Details- 
valueString value()Return the form field value.
- 
create- Parameters:
- name- the name of the part
- value- the form field value
- Returns:
- a single event stream
 
- 
createstatic reactor.core.publisher.Mono<FormPartEvent> create(String name, String value, @Nullable Consumer<HttpHeaders> headersConsumer) - Parameters:
- name- the name of the part
- value- the form field value
- headersConsumer- used to change default headers. Can be- null.
- Returns:
- a single event stream
 
 
-