You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DataBrokerEngine grows and grows due to the addition of public methods (e.g. VssSpecs + VssPath + connect), we are already over our allowed limit of 10 methods due to this fact. Therefore we should start splitting the logic inside the DataBrokerEngine into multiple objects.
We should try to share code, where code sharing between Java and Kotlin is possible, however we should not do so for suspend functions as Kotlin Coroutines are not supported out of the box by Java.
The text was updated successfully, but these errors were encountered:
The DataBrokerEngine grows and grows due to the addition of public methods (e.g. VssSpecs + VssPath + connect), we are already over our allowed limit of 10 methods due to this fact. Therefore we should start splitting the logic inside the DataBrokerEngine into multiple objects.
We should try to share code, where code sharing between Java and Kotlin is possible, however we should not do so for suspend functions as Kotlin Coroutines are not supported out of the box by Java.
The text was updated successfully, but these errors were encountered: