We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ba50a commit 7955bbdCopy full SHA for 7955bbd
src/commonMain/kotlin/spp.protocol/instrument/InstrumentThrottle.kt
@@ -15,5 +15,6 @@ data class InstrumentThrottle(
15
) {
16
companion object {
17
val DEFAULT: InstrumentThrottle = InstrumentThrottle(1, ThrottleStep.SECOND)
18
+ //todo: no throttle
19
}
20
src/commonMain/kotlin/spp.protocol/instrument/LiveInstrument.kt
@@ -13,7 +13,7 @@ import kotlinx.serialization.Serializable
13
abstract class LiveInstrument {
14
abstract val location: LiveSourceLocation
abstract val condition: String?
- abstract val expiresAt: Long?
+ abstract val expiresAt: Long? //todo: can just use -1 like hitLimit?
abstract val hitLimit: Int
abstract val id: String?
abstract val type: LiveInstrumentType
0 commit comments