commonMain.ru.casperix.signals.api.CustomSlotCollection.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signals Show documentation
Show all versions of signals Show documentation
Signals for all occasions
The newest version!
package ru.casperix.signals.api
interface CustomSlotCollection : CustomFuture {
val size:Int
fun forEach(action:(Listener)->Unit)
fun getListener(slot: Slot):Listener?
fun removeAllListeners()
}