| 7 | use tokio::sync::watch; |
| 8 | |
| 9 | pub struct AndroidOsImpl { |
| 10 | tun: Mutex<Option<Tun>>, |
| 11 | network_interface: watch::Sender<Option<NetworkInterface>>, |
| 12 | jvm: Arc<JavaVM>, |
| 13 | class_cache: Arc<ClassCache>, |
| 14 | } |
| 15 | |
| 16 | impl AndroidOsImpl { |
| 17 | pub fn new(jvm: Arc<JavaVM>, class_cache: Arc<ClassCache>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected