Runtime-sink-file-available
Read whether a RuntimeSink currently has an available file sink. This helper is useful for direct runtime diagnostics and recovery checks when code owns a runtime sink value instead of a ConfiguredLogger.
Interface
pub fn RuntimeSink::file_available(self : RuntimeSink) -> Bool {input
self : RuntimeSink- Runtime sink whose file sink availability should be inspected.
output
Bool- Whether an underlying file sink is available.
Explanation
Detailed rules explaining key parameters and behaviors
- Plain
Fileruntime variants report actual file availability. QueuedFileruntime variants expose the availability of their wrapped inner file sink.- Non-file runtime variants return
false. - This helper does not mutate runtime sink state.
How to Use
Here are some specific examples provided.
When Need Direct Runtime File Health Checks
When operators or code should check file sink readiness on a runtime sink value:
if !sink.file_available() {
println("file sink unavailable")
}In this example, the runtime sink exposes file health directly.
When Gate Direct Recovery Logic
When reopen or fallback behavior depends on file availability:
let ok = sink.file_available()In this example, callers can decide whether a recovery action is needed.
Error Case
e.g.:
If the runtime sink is not file-backed, the method returns
false.If callers need detailed failure counters rather than a simple availability flag,
file_state()orfile_runtime_state()is the better API.
Notes
Use this helper for lightweight file sink health checks on direct
RuntimeSinkvalues.Pair it with reopen and failure-counter APIs when diagnosing file sink problems.