Enumeration Caseswift-nio 2.81.0NIOCore

stopProducing

Indicates that the caller should stop producing elements. The delegate’s produceMore will get called once production should be resumed.

NIOAsyncSequenceProducer.swift:277
iOS
13+
macOS
10.15+
tvOS
13+
watchOS
6+
case stopProducing

Other cases

  • case produceMore

    Indicates that the caller should produce more elements for now. The delegate’s produceMore will NOT get called, since the demand was already signalled through this YieldResult.

  • case dropped

    Indicates that the yielded elements have been dropped because the sequence already terminated.