Actors

The following actors are available globally.

  • A storage for storing Codable objects in the Keychain

    See more

    Declaration

    Swift

    public actor Keychain<T> : Storage where T : Decodable, T : Encodable, T : Sendable
  • A storage for storing objects in memory, where T is the type of the object to be stored.

    See more

    Declaration

    Swift

    public actor Memory<T> : Storage where T : Decodable, T : Encodable, T : Sendable