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
use crate::protocol::{ Command, Response };

use bytes::BytesMut;

pub enum FlowType {

    /* From network stage to machine stage. */
    HandleSocketBuffer {
        buffer: BytesMut,
    },

    /* From machine stage to data stage. */
    ExecuteCommand {
        command: Command,
    },
}

pub enum RetFlowType {
    /* From machine stage to network stage. */
    SendResponse {
        response: Response,
    },

    /* From data stage to machine stage. */
    ReturnResponse {
        response: Response,
    },

    DoNothing { },
}