interface SharableNotifier<T> {
    getSharableNotifierInternals: (() => Promise<NotifierInternals<T>>);
}

Type Parameters

  • T

Properties

getSharableNotifierInternals: (() => Promise<NotifierInternals<T>>)

Used to replicate the multicast values at other sites. To manually create a local representative of a Notification, do

localIterable =
makeNotifier(E(remoteIterable).getSharableNotifierInternals());

The resulting localIterable also supports such remote use, and will return access to the same representation.