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
Currently Controller methods are bound (using MethodType) in the EPICS and Tango backends, so that they are callable from any context with an implicit self argument. The base class should do this so that it doesn't have to be repeated in every child class, and to allow simpler, more generic testing.
Acceptance Criteria
Be able to load a controller into Backend and call the methods available in its SingleMapping.
The text was updated successfully, but these errors were encountered:
Currently
Controller
methods are bound (usingMethodType
) in the EPICS and Tango backends, so that they are callable from any context with an implicit self argument. The base class should do this so that it doesn't have to be repeated in every child class, and to allow simpler, more generic testing.Acceptance Criteria
Backend
and call the methods available in itsSingleMapping
.The text was updated successfully, but these errors were encountered: