Object.defineProperty(Room.prototype, 'destinationDispatcher', {
    get(this: Room) {
        return cache.inObject(this, 'destinationDispatcher', 1, () => new ResourceDestinationDispatcher(this));
    },
    enumerable: false,