Coverage for ion/services/cei/epu_controller_list_client : 84.00%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
#!/usr/bin/env python
@file ion/services/cei/epu_controller_list_client.py @brief Provides client interface to controller_list service that provides a list of active EPU Controller service names in the system """
"""Client for querying EPUControllerListService """
def list(self): """Query the EPUControllerListService """ 'agentservices_epu_controller', 'associationservices_epu_controller']) log.debug("controller_list_client.list: Sending EPU controller list query") (content, headers, msg) = yield self.rpc_send('list', {}) log.debug("controller_list_client.list: list returned "+str(content)) defer.returnValue(content)
|