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

server: use ConnectionId in subscription APIs #1392

Merged
merged 1 commit into from
Jun 6, 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
8 changes: 4 additions & 4 deletions core/src/server/subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ impl PendingSubscriptionSink {
}

/// Returns connection identifier, which was used to perform pending subscription request
pub fn connection_id(&self) -> usize {
self.uniq_sub.conn_id.0
pub fn connection_id(&self) -> ConnectionId {
self.uniq_sub.conn_id
}
}

Expand Down Expand Up @@ -336,8 +336,8 @@ impl SubscriptionSink {
}

/// Get the connection ID.
pub fn connection_id(&self) -> usize {
self.uniq_sub.conn_id.0
pub fn connection_id(&self) -> ConnectionId {
self.uniq_sub.conn_id
}

/// Send out a response on the subscription and wait until there is capacity.
Expand Down
Loading