Name
public struct Name : RawRepresentable, ExpressibleByStringLiteral, Sendable
A structure that defines the name of an event.
-
Declaration
Swift
public typealias RawValue = String -
Declaration
Swift
public typealias StringLiteralType = String -
A type name for Sync event.
Declaration
Swift
public static let sync: Name -
A type name for Event.
Declaration
Swift
public static let event: Name -
A type name for IO_Error event.
Declaration
Swift
public static let ioError: Name -
A type name for RTMPStatus event.
Declaration
Swift
public static let rtmpStatus: Name -
Declaration
Swift
public let rawValue: String -
Create a Event.Name by rawValue.
Declaration
Swift
public init(rawValue: String) -
Create a Event.Name by stringLiteral.
Declaration
Swift
public init(stringLiteral value: String)