Package: txtq
Title: A Small Message Queue for Parallel Processes
Description: This queue is a data structure that lets
  parallel processes send and receive messages,
  and it can help coordinate the work
  of complicated parallel tasks.
  Processes can push new messages to the queue,
  pop old messages, and obtain a
  log of all the messages ever pushed. File locking
  preserves the integrity of the data even when
  multiple processes access the queue simultaneously.
Version: 0.2.4
License: MIT + file LICENSE
URL: https://github.com/wlandau/txtq
BugReports: https://github.com/wlandau/txtq/issues
Authors@R: c(
  person(
    family = "Landau",
    given = c("William", "Michael"),
    email = "will.landau@gmail.com",
    role = c("aut", "cre"),
    comment = c(ORCID = "0000-0003-1878-3253")
  ),
  person(
    given = c("Ian","E."),
    family = "Fellows", 
    role = c("ctb"), 
    email = "ian@fellstat.com"
  ),
  person(
    family = "Eli Lilly and Company",
    role = "cph"
  ))
Imports: base64url, filelock (>= 1.0.2), R6
Suggests: parallel, purrr, testthat (>= 2.1.0)
Encoding: UTF-8
Language: en-US
RoxygenNote: 7.1.1
NeedsCompilation: no
Packaged: 2021-03-27 18:34:28 UTC; c240390
Author: William Michael Landau [aut, cre]
    (<https://orcid.org/0000-0003-1878-3253>),
  Ian E. Fellows [ctb],
  Eli Lilly and Company [cph]
Maintainer: William Michael Landau <will.landau@gmail.com>
Repository: CRAN
Date/Publication: 2021-03-27 19:00:02 UTC
