aboutsummaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-03-06 01:55:49 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2016-03-06 14:30:28 -0500
commit3c016fdb4b60e3fe645ad4e18a4578f05a8cee7f (patch)
tree5776564bbdf23057ef7d0230f853f8692e4e4af7 /README.txt
parent54271fb583205eaa3fb6e21ca1d4b5255730abc1 (diff)
downloadcbt-3c016fdb4b60e3fe645ad4e18a4578f05a8cee7f.tar.gz
cbt-3c016fdb4b60e3fe645ad4e18a4578f05a8cee7f.tar.bz2
cbt-3c016fdb4b60e3fe645ad4e18a4578f05a8cee7f.zip
update readme - not true anymore, parallel tasks works
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt8
1 files changed, 0 insertions, 8 deletions
diff --git a/README.txt b/README.txt
index 18b398a..cf0a75f 100644
--- a/README.txt
+++ b/README.txt
@@ -106,14 +106,6 @@ Not implemented yet, but rather easily possible without API changes or
major refactors is concurrently building / downloading dependencies and
running tests. Right now it is sequential.
-SBT in comparison goes a step further and is conceptually able to also run tasks
-within single project to run concurrently. If I wanted to do that in
-CBT, it would require an API change. I would need to make tasks Monads,
-which means wrapper types and comprehensions everywhere. That would
-complicate ease of use and I am actually skeptical about the benefit.
-How often to you need to run tasks in parallel within a single project?
-"compile" happens before "package" before "publish".
-
CBT allows tasks to lazily depend on other tasks.
SBT currently does not, because it uses an Applicative, not a Monad, so
task dependencies are eager.