OperationBase provides the basic operation functionality.
| 8 | |
| 9 | // OperationBase provides the basic operation functionality. |
| 10 | type OperationBase struct { |
| 11 | terminal Terminal |
| 12 | id uint32 |
| 13 | stopped abool.AtomicBool |
| 14 | } |
| 15 | |
| 16 | // InitOperationBase initialize the operation with the ID and attached terminal. |
| 17 | // Should not be overridden by implementations. |
nothing calls this directly
no outgoing calls
no test coverage detected