Package ch.qos.logback.core.recovery
Class ResilientOutputStreamBase
- java.lang.Object
-
- java.io.OutputStream
-
- ch.qos.logback.core.recovery.ResilientOutputStreamBase
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
- Direct Known Subclasses:
ResilientFileOutputStream
,ResilientSyslogOutputStream
@Deprecated(since="2022-01-27") public abstract class ResilientOutputStreamBase extends java.io.OutputStream
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description ResilientOutputStreamBase()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addStatus(Status status)
Deprecated.void
close()
Deprecated.void
flush()
Deprecated.Context
getContext()
Deprecated.void
postIOFailure(java.io.IOException e)
Deprecated.void
setContext(Context context)
Deprecated.void
write(byte[] b, int off, int len)
Deprecated.void
write(int b)
Deprecated.
-
-
-
Method Detail
-
write
public void write(byte[] b, int off, int len)
Deprecated.- Overrides:
write
in classjava.io.OutputStream
-
write
public void write(int b)
Deprecated.- Specified by:
write
in classjava.io.OutputStream
-
flush
public void flush()
Deprecated.- Specified by:
flush
in interfacejava.io.Flushable
- Overrides:
flush
in classjava.io.OutputStream
-
postIOFailure
public void postIOFailure(java.io.IOException e)
Deprecated.
-
close
public void close() throws java.io.IOException
Deprecated.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
addStatus
public void addStatus(Status status)
Deprecated.
-
getContext
public Context getContext()
Deprecated.
-
setContext
public void setContext(Context context)
Deprecated.
-
-