blob: 85a60e607bb718a8c1a159171a5e819b2dd248ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from abc import ABCMeta, abstractmethod
import six
# abstract class for all playback tools
@six.add_metaclass(ABCMeta)
class Playback(object):
def __init__(self, config):
self.config = config
self.host = None
self.port = None
@abstractmethod
def download(self):
pass
@abstractmethod
def setup(self):
pass
@abstractmethod
def start(self):
pass
@abstractmethod
def stop(self):
pass
|