Files
client-sdk-rust/livekit-ffi/protocol/handle.proto
T

18 lines
405 B
Protocol Buffer

syntax = "proto3";
package livekit;
option csharp_namespace = "LiveKit.Proto";
/// # Safety
/// The foreign language is responsable for disposing handles
/// Forgetting to dispose the handle may lead to memory leaks
/// Messages in this file can contain an FFIHandle
message FfiHandleId {
uint64 id = 1;
}
/// Link the request/response of an asynchronous call
message FfiAsyncId {
uint64 id = 1;
}