16 lines
349 B
Swift
16 lines
349 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
/// Event for subscription
|
|
public enum SubscriptionEvent<T> {
|
|
/// The subscription's connection state has changed.
|
|
case connection(SubscriptionConnectionState)
|
|
|
|
/// The subscription received data.
|
|
case data(T)
|
|
}
|