Polish
This commit is contained in:
@@ -5,12 +5,12 @@ import java.util.concurrent.CountDownLatch;
|
||||
@EnableReactor
|
||||
@Log
|
||||
class Runner implements CommandLineRunner {
|
||||
|
||||
|
||||
@Autowired
|
||||
Reactor reactor
|
||||
|
||||
|
||||
private CountDownLatch latch = new CountDownLatch(1)
|
||||
|
||||
|
||||
@PostConstruct
|
||||
void init() {
|
||||
log.info "Registering consumer"
|
||||
@@ -21,12 +21,10 @@ class Runner implements CommandLineRunner {
|
||||
log.info "Notified Phil"
|
||||
latch.await()
|
||||
}
|
||||
|
||||
|
||||
@Selector(reactor="reactor", value="hello")
|
||||
void receive(String data) {
|
||||
log.info "Hello ${data}"
|
||||
latch.countDown()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user