Source

public enum Source

The source that created a dispatch.

  • The Dispatch was created by the application

    Declaration

    Swift

    case application
  • The Dispatch was created by a module

    Declaration

    Swift

    case module(Module.Type)
  • The module type if this source represents a module.

    Declaration

    Swift

    public var moduleType: Module.Type? { get }