Package org.powbot.api.rt4.stream

Types

BackingDataSource
Link copied to clipboard
interface BackingDataSource<T>
FilterDifficulty
Link copied to clipboard
enum FilterDifficulty : Enum<FilterDifficulty>
MessageStream
Link copied to clipboard
class MessageStream(dataSource: BackingDataSource<Message>) : SimpleStream<Message, MessageStream> , TextOps<Message, MessageStream>
PendingFilter
Link copied to clipboard
data class PendingFilter<T>(predicate: Predicate<in T>, difficulty: FilterDifficulty)
SimpleStream
Link copied to clipboard
abstract class SimpleStream<T, S : SimpleStream<T, S>>(backingDataSource: BackingDataSource<T>) : WrappedStream<T, S> , Iterable<T>
WrappedStream
Link copied to clipboard
interface WrappedStream<T, S : SimpleStream<T, S>>