接口 FormPartEvent
- 所有超级接口:
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.
- 从以下版本开始:
- 4.0
- 作者:
- Arjen Poutsma
-
方法概要
修饰符和类型方法说明static 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.
-
方法详细资料
-
value
String value()Return the form field value. -
create
- 参数:
name- the name of the partvalue- the form field value- 返回:
- a single event stream
-
create
static reactor.core.publisher.Mono<FormPartEvent> create(String name, String value, @Nullable Consumer<HttpHeaders> headersConsumer) - 参数:
name- the name of the partvalue- the form field valueheadersConsumer- used to change default headers. Can benull.- 返回:
- a single event stream
-