pl.wendigo.chrome.FramesStream.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chrome-reactive-kotlin Show documentation
Show all versions of chrome-reactive-kotlin Show documentation
Chrome Reactive - low level, remote chrome debugger protocol client (DevTools)
package pl.wendigo.chrome
import io.reactivex.Observable
import io.reactivex.Single
import io.reactivex.schedulers.Timed
import java.io.Closeable
interface FramesStream : Closeable {
fun getResponse(requestFrame: RequestFrame, clazz: Class) : Single>
fun send(frame: RequestFrame) : Single
fun eventFrames() : Observable>
fun frames() : Observable>
}