Function
unsafePollN
(subscription: Subscription<A>, max: number)
Source from the content-addressed store, hash-verified
| 1313 | |
| 1314 | /** @internal */ |
| 1315 | const unsafePollN = <A>(subscription: Subscription<A>, max: number): Chunk.Chunk<A> => { |
| 1316 | return subscription.pollUpTo(max) |
| 1317 | } |
| 1318 | |
| 1319 | /** @internal */ |
| 1320 | const unsafePublishAll = <A>(pubsub: AtomicPubSub<A>, as: Iterable<A>): Chunk.Chunk<A> => { |
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…