EventLoopIterator

An iterator over the EventLoops forming an EventLoopGroup.

EventLoop.swift:201
struct EventLoopIterator

Usually returned by an EventLoopGroup’s makeIterator() method.

let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
group.makeIterator().forEach { loop in
    // Do something with each loop
}