-
Notifications
You must be signed in to change notification settings - Fork 454
Closed
Labels
C-featureCategory FeaturesCategory Features
Description
What problem does the new feature solve?
Better store the following class
data class OrderBook(
val symbol: String,
val timeMillis: Long,
val asks: List<Book>,
val bids: List<Book>,
val status: Boolean
) {
data class Book(val price: BigDecimal, val size: BigDecimal)
}
What does the feature do?
data types support object type. In this way, asks and bids can store more efficiently.
Implementation challenges
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
C-featureCategory FeaturesCategory Features