abstract AbstractRemote
Constructors
new AbstractRemote()
new AbstractRemote(
connector,
logger?,
options?): AbstractRemote
Parameters
| Parameter | Type |
|---|---|
connector | RemoteConnector |
logger? | ILogger |
options? | Partial<AbstractRemoteOptions> |
Returns
Accessors
fetch
Get Signature
get fetch(): (input, init?) => Promise<Response>(input, init?) => Promise<Response>
Returns
Function
a fetch implementation (function) which can be called to perform fetch requests
Parameters
| Parameter | Type |
|---|---|
input | RequestInfo | URL |
init? | RequestInit |
Returns
Promise<Response>
Parameters
| Parameter | Type |
|---|---|
input | string | Request | URL |
init? | RequestInit |
Returns
Promise<Response>
Methods
createTextDecoder()
createTextDecoder(): TextDecoder
Returns
TextDecoder
A text decoder decoding UTF-8. This is a method to allow patching it for Hermes which doesn't support the
builtin, without forcing us to bundle a polyfill with @powersync/common.
fetchCredentials()
fetchCredentials(): Promise<null | PowerSyncCredentials>
Get credentials for PowerSync.
This should always fetch a fresh set of credentials - don't use cached values.
Returns
Promise<null | PowerSyncCredentials>
fetchStream()
fetchStream(options): Promise<SimpleAsyncIterator<string | Uint8Array<ArrayBufferLike>>>
Posts a /sync/stream request.
Depending on the Content-Type of the response, this returns strings for sync lines or encoded BSON documents as
Uint8Arrays.
Parameters
| Parameter | Type |
|---|---|
options | SyncStreamOptions |
Returns
Promise<SimpleAsyncIterator<string | Uint8Array<ArrayBufferLike>>>
get()
get(path, headers?): Promise<any>
Parameters
| Parameter | Type |
|---|---|
path | string |
headers? | Record<string, string> |
Returns
Promise<any>
getBSON()
abstract getBSON(): Promise<typeof BSON>
Provides a BSON implementation. The import nature of this varies depending on the platform
Returns
Promise<typeof BSON>
getCredentials()
getCredentials(): Promise<null | PowerSyncCredentials>
Get credentials currently cached, or fetch new credentials if none are available.
These credentials may have expired already.
Returns
Promise<null | PowerSyncCredentials>
getUserAgent()
getUserAgent(): string
Returns
string
invalidateCredentials()
invalidateCredentials(): void
Immediately invalidate credentials.
This may be called when the current credentials have expired.
Returns
void
post()
post(
path,
data,
headers?): Promise<any>
Parameters
| Parameter | Type |
|---|---|
path | string |
data | any |
headers? | Record<string, string> |
Returns
Promise<any>
prefetchCredentials()
prefetchCredentials(): Promise<null | PowerSyncCredentials>
Fetch a new set of credentials and cache it.
Until this call succeeds, getCredentials will still return the
old credentials.
This may be called before the current credentials have expired.
Returns
Promise<null | PowerSyncCredentials>
socketStreamRaw()
socketStreamRaw(options, bson?): Promise<SimpleAsyncIterator<Uint8Array<ArrayBufferLike>>>
Returns a data stream of sync line data, fetched via RSocket-over-WebSocket.
The only mechanism to abort the returned stream is to use the abort signal in SocketSyncStreamOptions.
Parameters
| Parameter | Type | Description |
|---|---|---|
options | SocketSyncStreamOptions | - |
bson? | typeof BSON | A BSON encoder and decoder. When set, the data stream will be requested with a BSON payload (required for compatibility with older sync services). |
Returns
Promise<SimpleAsyncIterator<Uint8Array<ArrayBufferLike>>>