Merge pull request #9 from pandachris/BAEL-2283
Removed unnecessary line
This commit is contained in:
commit
d80ab0b85f
|
@ -38,8 +38,7 @@ public class FireNForgetClient {
|
||||||
Flux.interval(Duration.ofMillis(50))
|
Flux.interval(Duration.ofMillis(50))
|
||||||
.take(data.size())
|
.take(data.size())
|
||||||
.map(this::createFloatPayload)
|
.map(this::createFloatPayload)
|
||||||
.map(socket::fireAndForget)
|
.flatMap(socket::fireAndForget)
|
||||||
.flatMap(Function.identity())
|
|
||||||
.blockLast();
|
.blockLast();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue