@oobleck/fluid-backend
Version:
Fluid Framework backend for nteract RTC
13 lines • 485 B
JavaScript
import { Presence } from "./presence";
export class ResolverContext {
initialize({ fluidContainer, containerServices }) {
this.container = fluidContainer;
this.shell = fluidContainer.initialObjects.shell;
this.presence = new Presence(containerServices.audience, this.shell.runtime);
}
dispose() {
var _a;
(_a = this.container) === null || _a === void 0 ? void 0 : _a.dispose();
}
}
//# sourceMappingURL=context.js.map