UNPKG

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