File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
src/main/kotlin/spp/protocol/service Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,13 @@ interface LiveInstrumentService {
8989 fun addLiveInstruments (instruments : List <LiveInstrument >): Future <List <LiveInstrument >>
9090 fun removeLiveInstrument (id : String ): Future <LiveInstrument ?>
9191 fun removeLiveInstruments (location : LiveSourceLocation ): Future <List <LiveInstrument >>
92+
93+ @GenIgnore
94+ fun getLiveInstrument (id : String ): Future <LiveInstrument ?> {
95+ return getLiveInstrumentById(id)
96+ }
97+
98+ @Deprecated(" use getLiveInstrument" , ReplaceWith (" getLiveInstrument(id)" ))
9299 fun getLiveInstrumentById (id : String ): Future <LiveInstrument ?>
93100 fun getLiveInstrumentsByIds (ids : List <String >): Future <List <LiveInstrument >>
94101 fun getLiveInstrumentsByLocation (location : LiveSourceLocation ): Future <List <LiveInstrument >>
You can’t perform that action at this time.
0 commit comments