golang-github-oklog-run 1.1.0-2 source package in Ubuntu

Changelog

golang-github-oklog-run (1.1.0-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update standards version to 4.5.0, no changes needed.
  * Apply multi-arch hints. + golang-github-oklog-run-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Sat, 26 Nov 2022 14:38:41 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-oklog-run_1.1.0-2.dsc 2.2 KiB d4161d20092d9e10f0290d16dba8aed2a17fa5b001c2ca0cd757ef9eb504308f
golang-github-oklog-run_1.1.0.orig.tar.gz 7.8 KiB 00c8e2d2071fca7db49027aaaf1e846fa863c4d8a5be33b49898d828ba88cdb5
golang-github-oklog-run_1.1.0-2.debian.tar.xz 2.4 KiB b402605e6b8b641423ea699e12451afbd1e2b682aca9b7caec0f62e1c78b2c12

Available diffs

No changes file available.

Binary packages built by this source

golang-github-oklog-run-dev: Universal mechanism to manage goroutine lifecycles

 Create a zero-value run.Group, and then add actors to it. Actors are
 defined as a pair of functions: an execute function, which should
 run synchronously; and an interrupt function, which, when invoked,
 should cause the execute function to return. Finally, invoke Run,
 which concurrently runs all of the actors, waits until the first actor
 exits, invokes the interrupt functions, and finally returns control
 to the caller only once all actors have returned. This general-purpose
 API allows callers to model pretty much any runnable task, and achieve
 well-defined lifecycle semantics for the group.