added data streaming instead of laoding

This commit is contained in:
2025-12-12 10:54:01 +01:00
parent 1bda78897b
commit 00c9d45642
7 changed files with 888 additions and 398 deletions

View File

@@ -28,7 +28,7 @@ impl ChromeDriverPool {
}
/// Creates a new pool with task-per-instance limit but no proxy.
pub async fn new_with_task_limit(pool_size: usize, max_tasks_per_instance: usize) -> Result<Self> {
pub async fn _new_with_task_limit(pool_size: usize, max_tasks_per_instance: usize) -> Result<Self> {
Self::new_with_proxy_and_task_limit(pool_size, None, max_tasks_per_instance).await
}