ThreadApi
Swift wrapper for privmx.NativeThreadApiWrapper
, providing Thread-related operations within PrivMX platform.
Static Methods
create(connection:)
Creates a new instance of ThreadApi
from a Connection
object.
This method initializes the ThreadApi
instance, enabling Thread-related operations over the specified connection.
Params
connection
inout Connection
The connection object to be used for interacting with Threads.
Returns
ThreadApi
·
A newly created ThreadApi
instance.
Methods
createThread(contextId:users:managers:publicMeta:privateMeta:policies:)
Creates a new Thread within PrivMX Bridge.
This method creates a new Thread in the specified context, assigning users and managers to it. Note that managers must be added explicitly as users to access the Thread.
If policies
argument is set to nil
, the default policies will be applied.
Params
contextId
std.string
The context in which the Thread should be created.
users
privmx.UserWithPubKeyVector
A vector of users who will have access to the Thread.
managers
privmx.UserWithPubKeyVector
A vector of managers responsible for the Thread.
publicMeta
privmx.endpoint.core.Buffer
Public metadata for the Thread, which will not be encrypted.
privateMeta
privmx.endpoint.core.Buffer
Private metadata for the Thread, which will be encrypted.
policies
privmx.endpoint.core.ContainerPolicy?
A set of policies for the Container.
Returns
std.string
·
The ID of the newly created Thread as a std.string
.
getThread(threadId:)
Retrieves detailed information about a specific Thread.
Params
threadId
std.string
The unique identifier of the Thread to retrieve.
Returns
privmx.endpoint.thread.Thread
·
A privmx.endpoint.thread.Thread
instance representing the Thread details.
updateThread(threadId:version:users:managers:publicMeta:privateMeta:force:forceGenerateNewKey:policies:)
Updates an existing Thread with new values.
This method updates the metadata, users, and managers of a Thread. The update can be forced, and a new key can be generated if needed.
If policies
argument is set to nil
, the default policies will be applied.
Params
threadId
std.string
The unique identifier of the Thread to be updated.
version
Int64
The current version of the Thread to ensure version consistency.
users
privmx.UserWithPubKeyVector
A vector of users who will have access to the Thread.
managers
privmx.UserWithPubKeyVector
A vector of managers responsible for the Thread.
publicMeta
privmx.endpoint.core.Buffer
New public metadata for the Thread, which will not be encrypted.
privateMeta
privmx.endpoint.core.Buffer
New private metadata for the Thread, which will be encrypted.
force
Bool
Whether to force the update, bypassing version control.
forceGenerateNewKey
Bool
Whether to generate a new key for the Thread.
policies
privmx.endpoint.core.ContainerPolicy?
A new set of policies for the Container.
deleteThread(threadId:)
Deletes a specified Thread.
Params
threadId
std.string
The unique identifier of the Thread to delete.
listThreads(contextId:pagingQuery:)
Lists all Threads accessible to the user within a specified context.
Params
contextId
std.string
The unique identifier of the context from which to list Threads.
pagingQuery
privmx.endpoint.core.PagingQuery
A query object to filter and paginate the results.
Returns
privmx.ThreadList
·
A privmx.ThreadList
instance containing the list of Threads.
listThreads(contextId:query:)
Params
contextId
std.string
query
privmx.endpoint.core.PagingQuery
Returns
privmx.ThreadList
·
sendMessage(threadId:publicMeta:privateMeta:data:)
Sends a message in a Thread.
Params
threadId
std.string
The unique identifier of the Thread to send the message to.
publicMeta
privmx.endpoint.core.Buffer
Public metadata for the message, which will not be encrypted.
privateMeta
privmx.endpoint.core.Buffer
Encrypted metadata for the message.
data
privmx.endpoint.core.Buffer
The actual content of the message.
Returns
std.string
·
The ID of the created message as a std.string
.
deleteMessage(_:)
Deletes a specified message.
Params
messageId
std.string
The unique identifier of the message to delete.
getMessage(_:)
Retrieves a specific message by its ID.
Params
messageId
std.string
The unique identifier of the message to retrieve.
Returns
privmx.endpoint.thread.Message
·
A privmx.endpoint.thread.Message
instance representing the message details.
listMessages(threadId:pagingQuery:)
Lists all messages from a specified Thread based on a query.
Params
threadId
std.string
The unique identifier of the Thread from which to list messages.
pagingQuery
privmx.endpoint.core.PagingQuery
A query object to filter and paginate the results.
Returns
privmx.MessageList
·
A privmx.MessageList
instance containing the list of messages.
listMessages(threadId:query:)
Params
threadId
std.string
query
privmx.endpoint.core.PagingQuery
Returns
privmx.MessageList
·
updateMessage(messageId:publicMeta:privateMeta:data:)
Updates an existing message with new metadata and content.
Params
messageId
std.string
The unique identifier of the message to be updated.
publicMeta
privmx.endpoint.core.Buffer
New public metadata for the message, which will not be encrypted.
privateMeta
privmx.endpoint.core.Buffer
New encrypted metadata for the message.
data
privmx.endpoint.core.Buffer
New content for the message, which will not be encrypted.
subscribeForThreadEvents()
Subscribes to Thread-related events, allowing notifications when Thread changes occur.
unsubscribeFromThreadEvents()
Unsubscribes from Thread-related events.
subscribeForMessageEvents(threadId:)
Subscribes to message-related events within a specific Thread, allowing notifications when messages are updated or received.
Params
threadId
std.string
The unique identifier of the Thread for which to subscribe to message events.
unsubscribeFromMessageEvents(threadId:)
Unsubscribes from message-related events within a specific Thread.
Params
threadId
std.string
The unique identifier of the Thread for which to unsubscribe from message events.
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.