예제 #1
0
파일: console.py 프로젝트: Syi/mercury
    def do_disconnect(self, arguments):
        """disconnects a Mercury session"""

        response = self.__getServerConnector(arguments).stopSession(arguments.device)

        print SystemResponseFormatter.format(response)
        
        self.__getServerConnector(arguments).close()
예제 #2
0
파일: console.py 프로젝트: Syi/mercury
    def do_devices(self, arguments):
        """lists all devices bound to the Mercury server"""

        response = self.__getServerConnector(arguments).listDevices()

        print SystemResponseFormatter.format(response)

        self.__getServerConnector(arguments).close()
예제 #3
0
    def do_devices(self, arguments):
        """lists all devices bound to the Mercury server"""

        response = self.__getServerConnector(arguments).listDevices()

        print SystemResponseFormatter.format(response)

        self.__getServerConnector(arguments).close()
예제 #4
0
    def do_disconnect(self, arguments):
        """disconnects a Mercury session"""

        response = self.__getServerConnector(arguments).stopSession(
            arguments.device)

        print SystemResponseFormatter.format(response)

        self.__getServerConnector(arguments).close()
예제 #5
0
파일: console.py 프로젝트: Karelkat/mercury
    def do_sessions(self, arguments):
        """lists all active sessions on the Mercury server"""

        response = self.__getServer(arguments).listSessions()

        print SystemResponseFormatter.format(response)