Skip to content

Commit 7955bbd

Browse files
committed
todos
1 parent e0ba50a commit 7955bbd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/commonMain/kotlin/spp.protocol/instrument/InstrumentThrottle.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ data class InstrumentThrottle(
1515
) {
1616
companion object {
1717
val DEFAULT: InstrumentThrottle = InstrumentThrottle(1, ThrottleStep.SECOND)
18+
//todo: no throttle
1819
}
1920
}

src/commonMain/kotlin/spp.protocol/instrument/LiveInstrument.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import kotlinx.serialization.Serializable
1313
abstract class LiveInstrument {
1414
abstract val location: LiveSourceLocation
1515
abstract val condition: String?
16-
abstract val expiresAt: Long?
16+
abstract val expiresAt: Long? //todo: can just use -1 like hitLimit?
1717
abstract val hitLimit: Int
1818
abstract val id: String?
1919
abstract val type: LiveInstrumentType

0 commit comments

Comments
 (0)