DataStoreEdit

public enum DataStoreEdit

A data store edit for a specific key

  • Removes the data store item at the given key.

    Declaration

    Swift

    case remove(key: String)
  • Puts the specified value at the given key for a specific expiry.

    If any previous value was stored at that key it will be replaced together with the new expiry.

    Declaration

    Swift

    case put(key: String, value: DataInput, expiry: Expiry)