pub trait ILogService: IObject {
    fn open_logger(
        &mut self,
        process_id: ProcessId
    ) -> Result<Shared<dyn ILogger>>; fn sf_server_impl_open_logger(
        &mut self,
        protocol: CommandProtocol,
        ctx: &mut ServerContext<'_>
    ) -> Result<()> { ... } fn get_sf_command_metadata_table(&self) -> CommandMetadataTable { ... } }

Required Methods

Provided Methods

Implementors