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

feat: add PendingSubscriptionSink::method_name #1413

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
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
5 changes: 5 additions & 0 deletions core/src/server/subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,11 @@ impl PendingSubscriptionSink {
pub fn connection_id(&self) -> ConnectionId {
self.uniq_sub.conn_id
}

/// Get the method name.
pub fn method_name(&self) -> &str {
self.method
}
}

/// Represents a single subscription that hasn't been processed yet.
Expand Down
Loading