PrivMXEndpoint
A wrapper class that manages a connection to PrivMX Bridge and provides access to various APIs, including Threads, Stores, and Inboxes.
The PrivMXEndpoint
class is designed to encapsulate and manage a single connection to PrivMX. It provides access to different APIs for handling Threads, Stores, and Inboxes, based on the modules that are enabled during initialization. It also supports asynchronous operations like uploading and downloading files, and allows for managing callbacks for events.
Fields
id
Int64
The stable identity of the entity associated with this instance.
anonymous
Bool
Marks the endpoint as connected using no authorisation.
connection
any PrivMXConnection
Provides handling of network and events through PrivMXConnection
.
threadApi
(any PrivMXThread)?
API for handling threads.
storeApi
(any PrivMXStore)?
API for handling stores.
inboxApi
(any PrivMXInbox)?
API for handling inboxes.
Methods
init(modules:userPrivKey:solutionId:platformUrl:)
Initializes a new instance of PrivMXEndpoint
with a connection to PrivMX Bridge and optional modules.
This method sets up the connection and, based on the provided modules, initializes the APIs for handling Threads, Stores, and Inboxes.
Params
modules
Set<PrivMXModule>
A set of modules to initialize (of type PrivMXModule
).
userPrivKey
String
The user’s private key in WIF format.
solutionId
String
The unique identifier of PrivMX Solution.
platformUrl
String
The URL of PrivMX Bridge instance.
init(modules:userPrivKey:solutionId:bridgeUrl:)
Initializes a new instance of PrivMXEndpoint
with a connection to PrivMX Bridge and optional modules.
This method sets up the connection and, based on the provided modules, initializes the APIs for handling Threads, Stores, and Inboxes.
Params
modules
Set<PrivMXModule>
A set of modules to initialize (of type PrivMXModule
).
userPrivKey
String
The user’s private key in WIF format.
solutionId
String
The unique identifier of PrivMX Solution.
bridgeUrl
String
The URL of PrivMX Bridge instance.
init(modules:solutionId:platformUrl:)
Initializes a new instance of PrivMXEndpoint
with a public connection to the PrivMX Bridge and optional modules.
This method sets up the connection and, based on the provided modules, initializes the APIs for handling threads, stores, and inboxes. Using a Public (anonymous) connection. Take note that this is only useful for Inboxes
Params
modules
Set<PrivMXModule>
A set of modules to initialize (of type PrivMXModule
).
solutionId
String
The unique identifier of the PrivMX solution.
platformUrl
String
The URL of the PrivMX Bridge instance.
init(modules:solutionId:bridgeUrl:)
Initializes a new instance of PrivMXEndpoint
with a public connection to the PrivMX Bridge and optional modules.
This method sets up the connection and, based on the provided modules, initializes the APIs for handling threads, stores, and inboxes. Using a Public (anonymous) connection. Take note that this is only useful for Inboxes
Params
modules
Set<PrivMXModule>
A set of modules to initialize (of type PrivMXModule
).
solutionId
String
The unique identifier of the PrivMX solution.
bridgeUrl
String
The URL of the PrivMX Bridge instance.
startUploadingNewFile(_:to:withPublicMeta:withPrivateMeta:sized:withChunksOf:onChunkUploaded:)
Begins uploading a new file using PrivMXStoreFileHandler
, which manages file uploads.
This method uploads a file to a specified store using a FileHandle
. It supports uploading large files in chunks and provides a callback for tracking the progress.
Params
file
FileHandle
A local FileHandle
representing the file to be uploaded.
store
String
The identifier of the destination store.
publicMeta
Data
Public, unencrypted metadata for the file.
privateMeta
Data
Encrypted metadata for the file.
size
Int64
The size of the file in bytes.
chunkSize
Int64
onChunkUploaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk upload is completed.
Returns
String
·
The identifier of the uploaded file as a String
.
startUploadingNewFileFromBuffer(_:to:withPublicMeta:withPrivateMeta:sized:withChunksOf:onChunkUploaded:)
Begins uploading a new file from an in-memory buffer using PrivMXStoreFileHandler
.
This method uploads file content from a Data
buffer to a specified Store. It supports chunked uploads and provides a callback for progress tracking.
Params
buffer
Data
The in-memory file content as Data
.
store
String
The identifier of the destination store.
publicMeta
Data
Public, unencrypted metadata for the file.
privateMeta
Data
Encrypted metadata for the file.
size
Int64
The size of the file in bytes.
chunkSize
Int64
The size of each chunk to be uploaded.
onChunkUploaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk upload is completed.
Returns
String
·
The identifier of the uploaded file as a String
.
startUploadingUpdatedFile(_:as:replacingPublicMeta:replacingPrivateMeta:replacingSize:withChunksOf:onChunkUploaded:)
/ Begins uploading an updated file using PrivMXStoreFileHandler
.
This method updates an existing file in a store with new content and metadata, supporting chunked uploads for large files.
Params
file
FileHandle
A local FileHandle
representing the updated file.
storeFile
String
The identifier of the file in the store to be updated.
publicMeta
Data
Public metadata to overwrite the existing metadata.
privateMeta
Data
Encrypted metadata to overwrite the existing metadata.
size
Int64
The size of the updated file in bytes.
chunkSize
Int64
onChunkUploaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk upload is completed.
Returns
String
·
The identifier of the updated file as a String
.
startUploadingUpdatedFileFromBuffer(_:as:replacingPublicMeta:replacingPrivateMeta:replacingSize:withChunksOf:onChunkUploaded:)
Begins uploading an updated file from an in-memory buffer using PrivMXStoreFileHandler
.
This method updates an existing file in a store with new content and metadata, supporting chunked uploads for large files.
Params
buffer
Data
The in-memory content of the updated file as Data
.
storeFile
String
The identifier of the file in the store to be updated.
publicMeta
Data
Public metadata to overwrite the existing metadata.
privateMeta
Data
Encrypted metadata to overwrite the existing metadata.
size
Int64
The size of the updated file in bytes.
chunkSize
Int64
The size of each chunk to be uploaded.
onChunkUploaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk upload is completed.
Returns
String
·
The identifier of the updated file as a String
.
startDownloadingToFile(_:from:withChunksOf:onChunkDownloaded:)
Begins downloading a file to the local filesystem using PrivMXStoreFileHandler
.
This method downloads a file from a Store to the local filesystem using a FileHandle
. It supports downloading files in chunks and provides a callback for progress tracking.
Params
file
FileHandle
A local FileHandle
representing the destination file.
fileId
String
The identifier of the file to be downloaded.
chunkSize
Int64
onChunkDownloaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk download is completed.
Returns
String
·
The identifier of the downloaded file as a String
.
startDownloadingToFileFromInbox(_:from:withChunksOf:onChunkDownloaded:)
Begins downloading a file to the local filesystem using InboxFileHandler
.
This method downloads a file from an Inbox to the local filesystem using a FileHandle
. It supports downloading files in chunks and provides a callback for progress tracking.
Params
file
FileHandle
A local FileHandle
representing the destination file.
fileId
String
The identifier of the file to be downloaded.
chunkSize
Int64
The size of a chunk to be used
onChunkDownloaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk download is completed.
Returns
String
·
The identifier of the downloaded file as a String
.
startDownloadingToBufferFromInbox(from:withChunksOf:onChunkDownloaded:)
Begins downloading a file to in-memory buffer. This method downloads a file from a store to the local in-memory buffer. It supports downloading files in chunks and provides a callback for progress tracking.
Params
fileId
String
The identifier of the file to be downloaded.
chunkSize
Int64
onChunkDownloaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk download is completed.
Returns
Data
·
The identifier of the downloaded file as a String
.
startDownloadingToBuffer(_:from:withChunksOf:onChunkDownloaded:)
Params
file
FileHandle
fileId
String
chunkSize
Int64
onChunkDownloaded
(@escaping @Sendable (Int) -> Void)
Returns
Data
·
startDownloadingToBuffer(from:withChunksOf:onChunkDownloaded:)
Begins downloading a file to in-memory buffer. This method downloads a file from a store to the local in-memory buffer. It supports downloading files in chunks and provides a callback for progress tracking.
Params
fileId
String
The identifier of the file to be downloaded.
chunkSize
Int64
onChunkDownloaded
(@escaping @Sendable (Int) -> Void)
A callback that is called after each chunk download is completed.
Returns
Data
·
The identifier of the downloaded file as a String
.
registerCallback(for:from:identified:_:)
Registers a callback for an Event from a particular Channel. This also causes events to start arriving from that channel.
Params
type
PMXEvent.Type
type of Event
channel
EventChannel
id
String
Custom identifier for managing Callbacks
cb
(@escaping @Sendable (Any?) -> Void)
deleteCallbacks(identified:)
Deletes a specific Callback.
Note that this is an expensive operation. If there are no callbacks left for events from a particular channel, Connection.unsubscribeFromChannel(_:)
is called, which means no Events from that Channel will arrive.
Params
id
String
ID of the callback to be deleted
clearCallbacks(for:)
Removes all callbacks for a particular Event type.
If there are no callbacks left for events from a particular channel, Connection.unsubscribeFromChannel(_:)
is called, which means no Events from that Channel will arrive.
Params
type
PMXEvent.Type
the type of Event, for which callbacks should be removed.
clearCallbacks(for:)
Removes all registered callbacks for Events from selected Channel
Once all callbacks are removed, Connection.unsubscribeFromChannel(_:)
is called, which means no Events from that Channel will arrive.
Params
channel
EventChannel
the EventChannel, from which events should no longer be received
clearAllCallbacks()
Removes all registered callbacks for Events and unsubscribes from all channels
handleEvent(_:ofType:)
Params
event
any PMXEvent
t
any PMXEvent.Type
We use cookies on our website. We use them to ensure the proper functioning of the site and, if you agree, for purposes we set, such as analytics or marketing.