Skip to content

Commit

Permalink
rename ObjectStreamReceiver finish function
Browse files Browse the repository at this point in the history
  • Loading branch information
tetter27 committed Jan 8, 2025
1 parent 382d578 commit ddaa24a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl UniStreamReceiver {
Ok(())
}

pub(crate) async fn terminate(&self) -> Result<()> {
pub(crate) async fn finish(&self) -> Result<()> {
self.senders
.buffer_tx()
.send(BufferCommand::ReleaseStream {
Expand All @@ -71,7 +71,7 @@ impl UniStreamReceiver {
})
.await?;

tracing::debug!("Terminated UniStreamReceiver");
tracing::debug!("UniStreamReceiver finished");

Ok(())
}
Expand Down

0 comments on commit ddaa24a

Please sign in to comment.