-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resources: Release sequenced resources in parallel. (#7991)
* resources: Release sequenced resources in parallel. This isn't used much, but has been bothering me for a while. While we acquire the resources in parallel, we used to release them sequentially. This reimplements `sequence` so they're released all at once. CHANGELOG_BEGIN CHANGELOG_END * resources: Drop an unnecessary `.map`. * resources: Fix the Scaladoc for `sequence`.
- Loading branch information
1 parent
5110115
commit 87eee30
Showing
3 changed files
with
114 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,5 +34,6 @@ da_scala_test_suite( | |
deps = [ | ||
":resources", | ||
":resources-test-lib", | ||
"//libs-scala/timer-utils", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters