//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use objc2::__framework_prelude::*;
use crate::*;
extern_protocol!(
/// [Apple's documentation](https://developer.apple.com/documentation/browserenginekit/beextensionprocess?language=objc)
pub unsafe trait BEExtensionProcess: NSObjectProtocol {
/// Stops the extension process.
///
/// When you call this method, you tell the system your app no longer needs this extension process.
/// If this is the last connection from the host process to the extension process, the system terminates
/// the extension process.
#[unsafe(method(invalidate))]
#[unsafe(method_family = none)]
unsafe fn invalidate(&self);
}
);