Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions livekit-ffi/src/cabi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ pub extern "C" fn livekit_ffi_drop_handle(handle_id: FfiHandleId) -> bool {
FFI_SERVER.drop_handle(handle_id)
}

#[no_mangle]
pub extern "C" fn livekit_ffi_dispose() {
FFI_SERVER.async_runtime.block_on(FFI_SERVER.dispose());
}

#[cfg(target_os = "android")]
pub mod android {
use jni::{
Expand Down
6 changes: 4 additions & 2 deletions livekit-ffi/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub struct FfiServer {
/// Store all Ffi handles inside an HashMap, if this isn't efficient enough
/// We can still use Box::into_raw & Box::from_raw in the future (but keep it safe for now)
ffi_handles: DashMap<FfiHandleId, Box<dyn FfiHandle>>,
async_runtime: tokio::runtime::Runtime,
pub async_runtime: tokio::runtime::Runtime,

next_id: AtomicU64,
config: Mutex<Option<FfiConfig>>,
Expand Down Expand Up @@ -135,7 +135,9 @@ impl FfiServer {
}

pub async fn dispose(&self) {
log::info!("disposing the FfiServer, closing all rooms...");
self.logger.set_capture_logs(false);

log::info!("disposing ffi server");

// Close all rooms
let mut rooms = Vec::new();
Expand Down