Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom Content Codecs when preparing messages #212

Merged
merged 2 commits into from
Jan 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Sources/XMTP/Conversation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,15 @@ public enum Conversation: Sendable {
}
}

@discardableResult public func prepareMessage(encodedContent: EncodedContent, options: SendOptions? = nil) async throws -> PreparedMessage {
nplasterer marked this conversation as resolved.
Show resolved Hide resolved
switch self {
case let .v1(conversationV1):
return try await conversationV1.prepareMessage(encodedContent: encodedContent, options: options)
case let .v2(conversationV2):
return try await conversationV2.prepareMessage(encodedContent: encodedContent, options: options)
}
}

public func prepareMessage<T>(content: T, options: SendOptions? = nil) async throws -> PreparedMessage {
switch self {
case let .v1(conversationV1):
Expand Down