Class LifecycleChannel
java.lang.Object
io.flutter.embedding.engine.systemchannels.LifecycleChannel
A
BasicMessageChannel
that communicates lifecycle events to the framework.
The activity listens to the Android lifecycle events, in addition to the focus events for windows, and this channel combines that information to decide if the application is the inactive, resumed, paused, or detached state.
-
Constructor Summary
ConstructorDescriptionLifecycleChannel
(DartExecutor dartExecutor) LifecycleChannel
(BasicMessageChannel<String> channel) -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
void
void
void
void
-
Constructor Details
-
LifecycleChannel
-
LifecycleChannel
-
-
Method Details
-
aWindowIsFocused
public void aWindowIsFocused() -
noWindowsAreFocused
public void noWindowsAreFocused() -
appIsResumed
public void appIsResumed() -
appIsInactive
public void appIsInactive() -
appIsPaused
public void appIsPaused() -
appIsDetached
public void appIsDetached()
-