Interface ResourceTransformer
- All Known Implementing Classes:
 CachingResourceTransformer,CssLinkResourceTransformer,ResourceTransformerSupport
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
An abstraction for transforming the content of a resource.
- Since:
 - 5.0
 - Author:
 - Rossen Stoyanchev
 
- 
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Resource>transform(ServerWebExchange exchange, Resource resource, ResourceTransformerChain transformerChain) Transform the given resource. 
- 
Method Details
- 
transform
reactor.core.publisher.Mono<Resource> transform(ServerWebExchange exchange, Resource resource, ResourceTransformerChain transformerChain) Transform the given resource.- Parameters:
 exchange- the current exchangeresource- the resource to transformtransformerChain- the chain of remaining transformers to delegate to- Returns:
 - the transformed resource (never empty)
 
 
 -