* Creates a new CollectionSyncManager instance
(config: CollectionConfig<TOutput, TKey, TSchema>, id: string)
| 54 | * Creates a new CollectionSyncManager instance |
| 55 | */ |
| 56 | constructor(config: CollectionConfig<TOutput, TKey, TSchema>, id: string) { |
| 57 | this.config = config |
| 58 | this.id = id |
| 59 | this.syncMode = config.syncMode ?? `eager` |
| 60 | } |
| 61 | |
| 62 | setDeps(deps: { |
| 63 | collection: CollectionImpl<TOutput, TKey, any, TSchema, TInput> |
nothing calls this directly
no outgoing calls
no test coverage detected