Last change
on this file since 88 was 88, checked in by Bart Vastenhouw, 3 years ago |
Added python SimpleRunner GUI
|
File size:
378 bytes
|
Line | |
---|
1 | from abc import ABC, abstractmethod
|
---|
2 |
|
---|
3 | class Session(ABC):
|
---|
4 | '''
|
---|
5 | An active websocket session.
|
---|
6 | '''
|
---|
7 | @abstractmethod
|
---|
8 | def send(self, text: str):
|
---|
9 | '''
|
---|
10 | @param text the text to be sent into the websocket.
|
---|
11 | '''
|
---|
12 |
|
---|
13 | @abstractmethod
|
---|
14 | def close(self):
|
---|
15 | '''
|
---|
16 | close this session.
|
---|
17 | '''
|
---|
18 |
|
---|
19 |
|
---|
20 |
|
---|
21 | |
---|
Note:
See
TracBrowser
for help on using the repository browser.