pub trait ConcurrencyProvider: DynClone + Debug + Sync + Send {
    fn concurrency(&self) -> Concurrency;
    fn feedback(&self, feedback: ConcurrencyProviderFeedback<'_>);
}
Expand description

并发数获取接口

获取分片上传时的并发数

Required Methods

获取并发数

反馈并发数结果

Implementations on Foreign Types

Implementors