API Reference

IGroupedChangeSubscriptionsForContextManagerinterface

Interface exported from grouped-change-subscriptions-for-context-manager.

Overview

Groups watcher subscriptions by context and exposes per-context subscription orchestration.

Declaration

export interface IGroupedChangeSubscriptionsForContextManager<
  TSubsriptionData,
  TData,
  TIdData = TData,
> extends IKeyedInstanceFactory<string, TData, IObserver, TIdData> {
  getSubsriptionData(id: string): TSubsriptionData | undefined;
}

Import

import type { IGroupedChangeSubscriptionsForContextManager } from '@rs-x/state-manager';

Members

1 member in this interface.

getSubsriptionData
method
getSubsriptionData(id: string): TSubsriptionData | undefined

Parameters

Name
Type
Required
id
string
required

Returns

TSubsriptionData | undefined