| 21 | * The transport protocol between the agent and the backend (OAP). |
| 22 | */ |
| 23 | export default interface Protocol { |
| 24 | isConnected: boolean; |
| 25 | |
| 26 | heartbeat(): this; |
| 27 | |
| 28 | report(): this; |
| 29 | |
| 30 | flush(): Promise<any> | null; |
| 31 | |
| 32 | destroy?(): void; |
| 33 | } |