26 lines
911 B
Swift
26 lines
911 B
Swift
//
|
|
// MethodNames.swift
|
|
// flutter_cast_framework
|
|
//
|
|
// Created by Gianluca Paradiso on 09/11/2019.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum MethodNames : String {
|
|
case onCastStateChanged = "CastContext.onCastStateChanged"
|
|
|
|
// region SessionManager
|
|
case onSessionStarting = "SessionManager.onSessionStarting"
|
|
case onSessionStarted = "SessionManager.onSessionStarted"
|
|
case onSessionStartFailed = "SessionManager.onSessionStartFailed"
|
|
case onSessionEnding = "SessionManager.onSessionEnding"
|
|
case onSessionEnded = "SessionManager.onSessionEnded"
|
|
case onSessionResuming = "SessionManager.onSessionResuming"
|
|
case onSessionResumed = "SessionManager.onSessionResumed"
|
|
case onSessionResumeFailed = "SessionManager.onSessionResumeFailed"
|
|
case onSessionSuspended = "SessionManager.onSessionSuspended"
|
|
// end-region
|
|
|
|
case onMessageReceived = "CastSession.onMessageReceived"
|
|
}
|