You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING CHANGE: The `sectester/bus` package, which was intended
to provide support of communication via the AMQP transport is removed.
This change simplifies the codebase by removing deprecated options and
encourages the use of more modern and supported transport methods.
closes#196
As soon as the `IssueDetected` event appears, the event handler takes a single argument, the data passed from the client (in this case, an event payload which has been sent over the network).
The `RepeaterFactory` also provides a method to create a `Repeater` instance using an existing repeater ID. You can use the `createRepeaterFromExisting` method to accomplish this:
The `Repeater` instance provides the `start` method. This method is required to establish a connection with the Bright cloud engine and interact with other services.
126
96
127
97
```ts
@@ -169,8 +139,8 @@ describe('Scan', () => {
169
139
170
140
### Implementation details
171
141
172
-
Under the hood `Repeater`register `ExecuteRequestEventHandler` in bus,
173
-
which in turn uses the `RequestRunner` to proceed with request:
142
+
Under the hood `Repeater`connects to the Bright engine using web socket protocol, then listens for incoming commands from the engine.
143
+
Which in turn get executed with the `RequestRunner` to proceed with the request coming from the engine:
0 commit comments