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

core: AwaitTreeLayer covers oio::Read and oio::Write #4771

Closed
Xuanwo opened this issue Jun 19, 2024 · 1 comment · Fixed by #4787
Closed

core: AwaitTreeLayer covers oio::Read and oio::Write #4771

Xuanwo opened this issue Jun 19, 2024 · 1 comment · Fixed by #4787
Assignees
Labels
core good first issue Good for newcomers help wanted Extra attention is needed

Comments

@Xuanwo
Copy link
Member

Xuanwo commented Jun 19, 2024

impl AwaitTreeLayer {
/// Create a new `AwaitTreeLayer`.
pub fn new() -> Self {
Self {}
}
}
impl<A: Access> Layer<A> for AwaitTreeLayer {
type LayeredAccess = AwaitTreeAccessor<A>;
fn layer(&self, accessor: A) -> Self::LayeredAccess {
AwaitTreeAccessor { inner: accessor }
}
}

AwaitTreeLayer doesn't support oio::Read and oio::Write now, makes it hard to track read and write process.

@Xuanwo Xuanwo added good first issue Good for newcomers help wanted Extra attention is needed core labels Jun 19, 2024
@PsiACE
Copy link
Member

PsiACE commented Jun 19, 2024

assign me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants