-
public final class InspectorDomain
-
-
Method Summary
Modifier and Type Method Description final Flow<InspectorEvent>events()Subscribes to all events related to this domain. final Flow<InspectorEvent.DetachedEvent>detached()Fired when remote debugging connection is about to be terminated. final Flow<InspectorEvent.TargetCrashedEvent>targetCrashed()Fired when debugging target has crashedOfficial doc final Flow<InspectorEvent.TargetReloadedAfterCrashEvent>targetReloadedAfterCrash()Fired when debugging target has reloaded after crashOfficial doc final Unitdisable()Disables inspector domain notifications. final Unitenable()Enables inspector domain notifications. -
-
Method Detail
-
events
final Flow<InspectorEvent> events()
Subscribes to all events related to this domain.
-
detached
final Flow<InspectorEvent.DetachedEvent> detached()
Fired when remote debugging connection is about to be terminated. Contains detach reason.
-
targetCrashed
final Flow<InspectorEvent.TargetCrashedEvent> targetCrashed()
Fired when debugging target has crashed
-
targetReloadedAfterCrash
final Flow<InspectorEvent.TargetReloadedAfterCrashEvent> targetReloadedAfterCrash()
Fired when debugging target has reloaded after crash
-
-
-
-