seninel部署
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Eric Zhao 0508c92665
Fix the bug that parameters are not carried when exiting entries in SentinelReactorSubscriber
5年前
..
src Fix the bug that parameters are not carried when exiting entries in SentinelReactorSubscriber 5年前
README.md doc: Update README for new adapter modules 6年前
pom.xml Bump version to 1.6.1-SNAPSHOT 5年前

README.md

Sentinel Reactor Adapter

Note: this module requires Java 8 or later version.

Sentinel provides integration module for Reactor.

Add the following dependency in pom.xml (if you are using Maven):

<dependency>
    <groupId>com.alibaba.csp</groupId>
    <artifactId>sentinel-reactor-adapter</artifactId>
    <version>x.y.z</version>
</dependency>

Example:

someService.doSomething() // return type: Mono<T> or Flux<T>
   .transform(new SentinelReactorTransformer<>(resourceName)) // transform here
   .subscribe();