ElectronSessionModule.fromPartition method
ElectronSessionModule › fromPartition
Unofficial
Returns a session instance from apartition string. When there is an existing Session with the same partition, it will be returned; otherwise a new Session instance will be created with options.If
partition starts with persist:, the page will use a persistent session available to all pages in the app with the same partition. If there is no persist: prefix, the page will use an in-memory session. If the partition is empty then default session of the app will be returned. Signature:
fromPartition(partition: string, options?: ElectronFromPartitionOptions | undefined): SessionParameters:
| Parameter | Type | Description |
|---|---|---|
| partition | string | The partition string identifying the session. |
| options? | ElectronFromPartitionOptions | undefined | Options used when creating the session. |
Returns: Session — The Session instance for the given partition.