Last active
March 4, 2019 02:59
-
-
Save vamsitallapudi/379fc1d2e108fc23ed38f6596777c9cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.coderefer.rxandroidexamples.intro.operators.transform | |
import android.os.Bundle | |
import android.support.v7.app.AppCompatActivity | |
import android.util.Log | |
import com.coderefer.rxandroidexamples.R | |
import io.reactivex.Observable | |
import io.reactivex.disposables.Disposable | |
private const val TAG = "BufferOperator" | |
class BufferOperatorActivity : AppCompatActivity() { | |
private lateinit var disposable: Disposable | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_buffer) | |
val observable = | |
Observable.just(10, 20, 30, 40, 50, 60) | |
.buffer(3) | |
disposable = observable.subscribe { | |
Log.d(TAG, "onNext: ") | |
for(s in it) { | |
Log.d(TAG, s.toString()) | |
} | |
} | |
} | |
override fun onDestroy() { | |
disposable.dispose() | |
super.onDestroy() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment