pddl-workspace
Version:
20 lines • 1.38 kB
JavaScript
;
/* --------------------------------------------------------------------------------------------
* Copyright (c) Jan Dolejsi 2020. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
Object.defineProperty(exports, "__esModule", { value: true });
exports.SearchDebuggerSupportType = void 0;
/** Communication mechanism between the search debugger and the planner. */
var SearchDebuggerSupportType;
(function (SearchDebuggerSupportType) {
/** Search Debugger not supported. */
SearchDebuggerSupportType["None"] = "None";
/** HTTP callback to the port exposed by the Search Debugger. */
SearchDebuggerSupportType["HttpCallback"] = "HttpCallback";
/** HTTP Web Socket that the Search Debugger opens after the async request is sent to the planning service. Json format. */
SearchDebuggerSupportType["WebSocketJson"] = "WebSocketJson";
/** HTTP Web Socket that the Search Debugger opens after the async request is sent to the planning service. Binary format. */
SearchDebuggerSupportType["WebSocketBinary"] = "WebSocketBinary";
})(SearchDebuggerSupportType || (exports.SearchDebuggerSupportType = SearchDebuggerSupportType = {}));
//# sourceMappingURL=PlannerProvider.js.map