Skip to content

Commit be2e896

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents ab43edb + 1b6903a commit be2e896

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

README.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,40 @@ SoundCloudAuth.create(Config.CLIENT_ID, Config.CLIENT_SECRET_ID)
168168
});
169169
```
170170

171-
## Additional Documentation and Support ##
171+
## Additional Documentation And Support ##
172172
- The [SoundCloud API Documentation](https://developers.soundcloud.com/docs/api/reference).
173173
- The [SoundCloud API Discussion Group](https://groups.google.com/forum/#!forum/soundcloudapi).
174174
- If you have any questions or you have found some issues, feel free to write in the [Issue Section](https://github.com/vpaliyX/SoundCloud-API/issues).
175175

176+
## Even More Examples ##
177+
Let's suppose that you want to fetch playlists and you have an array of different names; you can solve the problem this way:
178+
179+
```java
180+
//just a dummy Single object
181+
Single<List<PlaylistEntity>> start = Single.just(new LinkedList<>());
182+
for(String name:names){
183+
//combine all of them
184+
start=Single.zip(start,service.searchPlaylists(PlaylistEntity
185+
.Filter.start()
186+
.byName(name)
187+
.createOptions())
188+
//if an error occurs, we want to skip it
189+
.onErrorResumeNext(Single.just(new ArrayList<>())),(first,second)->{
190+
if(second!=null){
191+
first.addAll(second);
192+
}
193+
return first;
194+
});
195+
196+
//call all of them
197+
start.subscribeOn(Schedulers.io())
198+
.observeOn(AndroidSchedulers.mainThread())
199+
.subscribe(list->{
200+
//do something
201+
});
202+
```
203+
204+
176205

177206
## The End. ##
178207

0 commit comments

Comments
 (0)