├── .Rbuildignore ├── .travis.yml ├── DESCRIPTION ├── LICENCE ├── LICENSE ├── NAMESPACE ├── R ├── async-interrupt.R ├── async-progress.R ├── consumer.R ├── example.R ├── globals.R ├── package.R ├── producer.R ├── queue.R ├── redis-source.R ├── text-file-source.R └── zzz.R ├── README.md ├── inst ├── apps │ ├── cancel │ │ └── app.R │ ├── changeReactive │ │ └── app.R │ └── progress │ │ └── app.R └── doc │ ├── shinymp.R │ ├── shinymp.Rmd │ └── shinymp.html ├── ipc.Rproj ├── man ├── AsyncInterruptor.Rd ├── AsyncProgress.Rd ├── Consumer.Rd ├── Producer.Rd ├── Queue.Rd ├── RedisSource.Rd ├── ShinyConsumer.Rd ├── ShinyProducer.Rd ├── TextFileSource.Rd ├── defaultSource.Rd ├── ipc-package.Rd ├── redisConfig.Rd ├── redisIdGenerator.Rd ├── shinyExample.Rd ├── shinyQueue.Rd ├── stopMulticoreFuture.Rd └── tempFileGenerator.Rd ├── paper.bib ├── paper.md ├── tests ├── testthat.R └── testthat │ └── test-main.R └── vignettes └── shinymp.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Ian E. Fellows 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/async-interrupt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/async-interrupt.R -------------------------------------------------------------------------------- /R/async-progress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/async-progress.R -------------------------------------------------------------------------------- /R/consumer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/consumer.R -------------------------------------------------------------------------------- /R/example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/example.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/package.R -------------------------------------------------------------------------------- /R/producer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/producer.R -------------------------------------------------------------------------------- /R/queue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/queue.R -------------------------------------------------------------------------------- /R/redis-source.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/redis-source.R -------------------------------------------------------------------------------- /R/text-file-source.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/text-file-source.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/README.md -------------------------------------------------------------------------------- /inst/apps/cancel/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/inst/apps/cancel/app.R -------------------------------------------------------------------------------- /inst/apps/changeReactive/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/inst/apps/changeReactive/app.R -------------------------------------------------------------------------------- /inst/apps/progress/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/inst/apps/progress/app.R -------------------------------------------------------------------------------- /inst/doc/shinymp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/inst/doc/shinymp.R -------------------------------------------------------------------------------- /inst/doc/shinymp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/inst/doc/shinymp.Rmd -------------------------------------------------------------------------------- /inst/doc/shinymp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/inst/doc/shinymp.html -------------------------------------------------------------------------------- /ipc.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/ipc.Rproj -------------------------------------------------------------------------------- /man/AsyncInterruptor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/AsyncInterruptor.Rd -------------------------------------------------------------------------------- /man/AsyncProgress.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/AsyncProgress.Rd -------------------------------------------------------------------------------- /man/Consumer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/Consumer.Rd -------------------------------------------------------------------------------- /man/Producer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/Producer.Rd -------------------------------------------------------------------------------- /man/Queue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/Queue.Rd -------------------------------------------------------------------------------- /man/RedisSource.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/RedisSource.Rd -------------------------------------------------------------------------------- /man/ShinyConsumer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/ShinyConsumer.Rd -------------------------------------------------------------------------------- /man/ShinyProducer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/ShinyProducer.Rd -------------------------------------------------------------------------------- /man/TextFileSource.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/TextFileSource.Rd -------------------------------------------------------------------------------- /man/defaultSource.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/defaultSource.Rd -------------------------------------------------------------------------------- /man/ipc-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/ipc-package.Rd -------------------------------------------------------------------------------- /man/redisConfig.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/redisConfig.Rd -------------------------------------------------------------------------------- /man/redisIdGenerator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/redisIdGenerator.Rd -------------------------------------------------------------------------------- /man/shinyExample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/shinyExample.Rd -------------------------------------------------------------------------------- /man/shinyQueue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/shinyQueue.Rd -------------------------------------------------------------------------------- /man/stopMulticoreFuture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/stopMulticoreFuture.Rd -------------------------------------------------------------------------------- /man/tempFileGenerator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/man/tempFileGenerator.Rd -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/paper.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/tests/testthat/test-main.R -------------------------------------------------------------------------------- /vignettes/shinymp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fellstat/ipc/HEAD/vignettes/shinymp.Rmd --------------------------------------------------------------------------------