UNPKG

1.16 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3class AutomationEventListenerSupport {
4 registrationSuccessful(handler) {
5 // This is intentionally left empty
6 }
7 contextCreated(context) {
8 // This is intentionally left empty
9 }
10 commandIncoming(payload) {
11 // This is intentionally left empty
12 }
13 commandStarting(payload, ctx) {
14 // This is intentionally left empty
15 }
16 commandSuccessful(payload, ctx, result) {
17 return Promise.resolve();
18 }
19 commandFailed(payload, ctx, err) {
20 return Promise.resolve();
21 }
22 eventIncoming(payload) {
23 // This is intentionally left empty
24 }
25 eventStarting(payload, ctx) {
26 // This is intentionally left empty
27 }
28 eventSuccessful(payload, ctx, result) {
29 return Promise.resolve();
30 }
31 eventFailed(payload, ctx, err) {
32 return Promise.resolve();
33 }
34 messageSent(message, destinations, options, ctx) {
35 return Promise.resolve();
36 }
37}
38exports.AutomationEventListenerSupport = AutomationEventListenerSupport;
39//# sourceMappingURL=AutomationEventListener.js.map
\No newline at end of file