mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
344 B
JavaScript
19 lines
344 B
JavaScript
const EXPORTED_SYMBOLS = ["FaultTolerance"];
|
|
|
|
FaultTolerance = {
|
|
get Service() {
|
|
if (!this._Service)
|
|
this._Service = new FaultToleranceService();
|
|
return this._Service;
|
|
}
|
|
}
|
|
|
|
function FaultToleranceService() {
|
|
}
|
|
|
|
FaultToleranceService.prototype = {
|
|
processMessage: function FTApp_doAppend(message) {
|
|
dump(message);
|
|
}
|
|
};
|