Skip to content

Commit

Permalink
New contrib module: rxjava-async-util
Browse files Browse the repository at this point in the history
Home for async utility functions with juc.Future, Actions, Functions etc that don’t need to be in rxjava-core.

As per discussions at:

- ReactiveX#646 (comment)
- ReactiveX#645 (comment)
- ReactiveX#622 (comment)
  • Loading branch information
benjchristensen committed Dec 30, 2013
1 parent 43c16bb commit cf33aad
Show file tree
Hide file tree
Showing 6 changed files with 708 additions and 507 deletions.
20 changes: 20 additions & 0 deletions rxjava-contrib/rxjava-async-util/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
apply plugin: 'osgi'

sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6

dependencies {
compile project(':rxjava-core')
testCompile project(":rxjava-core").sourceSets.test.output
provided 'junit:junit-dep:4.10'
provided 'org.mockito:mockito-core:1.8.5'
}

jar {
manifest {
name = 'rxjava-async-util'
instruction 'Bundle-Vendor', 'Netflix'
instruction 'Bundle-DocURL', 'https://github.com/Netflix/RxJava'
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
}
}
Loading

0 comments on commit cf33aad

Please sign in to comment.