Package org.jboss.logmanager.handlers
Class Handlers
- java.lang.Object
-
- org.jboss.logmanager.handlers.Handlers
-
public final class Handlers extends java.lang.ObjectHandler utility methods.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Runnableflusher(java.util.logging.Handler handler)Create aRunnabletask that flushes a handler.static FlushableCloseablewrap(java.util.logging.Handler handler)Create a wrapper that exposes the handler's close and flush methods via the I/O API.
-
-
-
Method Detail
-
wrap
public static FlushableCloseable wrap(java.util.logging.Handler handler)
Create a wrapper that exposes the handler's close and flush methods via the I/O API.- Parameters:
handler- the logging handler- Returns:
- the wrapper
-
flusher
public static java.lang.Runnable flusher(java.util.logging.Handler handler)
Create aRunnabletask that flushes a handler.- Parameters:
handler- the handler- Returns:
- a flushing task
-
-