func service()

in MobiusCore/Source/WorkBag.swift [53:63]


    func service() {
        access.guard {
            guard state == .idle else { return }
            state = .servicing
            defer { state = .idle }

            while let action = next() {
                action()
            }
        }
    }