()
| 1328 | store.dispatch(threadAdapterEvents.started()); |
| 1329 | }, |
| 1330 | stop(): void { |
| 1331 | store.dispatch(threadAdapterEvents.stopped()); |
| 1332 | errorSubscription?.unsubscribe(); |
| 1333 | errorSubscription = null; |
| 1334 | store.stop(); |
| 1335 | }, |
| 1336 | setContext(context: ThreadRuntimeContext | null): void { |
| 1337 | store.dispatch(threadAdapterEvents.contextChanged({ context })); |
| 1338 | }, |
no test coverage detected
searching dependent graphs…