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: remove Control and ControlledConnection #164

Merged
merged 16 commits into from
Jul 3, 2023

Conversation

thomaseizinger
Copy link
Contributor

@thomaseizinger thomaseizinger commented Jun 28, 2023

To remove Control, we need to migrate all tests and benchmarks to use the new poll-based API. This is done at a best-effort basis.

There is likely a cleaner design for the tests but I wanted to minimize the amount of work we put into this library. What I wanted to get to is having #153 merged and implement #154.

Especially the benchmarks are somewhat dated I think we are better off using the new cross-implementation benchmarking infrastructure to check the performance of rust-yamux.

Resolves #157.

@thomaseizinger thomaseizinger changed the title refactor: move more tests to the poll-based API feat: remove Control and ControlledConnection Jun 30, 2023
Copy link
Member

@mxinden mxinden left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for all the clean-ups. Especially the big one, namely to remove the Control.

CHANGELOG.md Outdated Show resolved Hide resolved
Comment on lines +108 to +118
pub struct MessageSender<T> {
connection: Connection<T>,
pending_messages: Vec<Msg>,
worker_streams: FuturesUnordered<BoxFuture<'static, ()>>,
streams_processed: usize,
/// Whether to spawn a new task for each stream.
spawn_tasks: bool,
/// How many times to send each message on the stream
message_multiplier: u64,
strategy: MessageSenderStrategy,
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Co-authored-by: Max Inden <mail@max-inden.de>
@thomaseizinger thomaseizinger merged commit 69404a1 into libp2p:master Jul 3, 2023
1 check passed
@thomaseizinger thomaseizinger deleted the feat/remove-control branch July 3, 2023 14:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Remove ControlledConnection and everything around it
2 participants