1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Created on Thu Aug 17 2023
 *
 * Copyright (c) storycraft. Licensed under the MIT Licence.
 */

use async_task::Runnable;

#[derive(Debug)]
#[non_exhaustive]
pub enum ExecutorEvent {
    Wake,
    PollTask(Runnable),
    Exit(i32),
}