Package org.wildfly.security.util
Class AtomicFileOutputStream.State
- java.lang.Object
-
- org.wildfly.security.util.AtomicFileOutputStream.State
-
- Direct Known Subclasses:
AtomicFileOutputStream.OpenState
- Enclosing class:
- AtomicFileOutputStream
abstract static class AtomicFileOutputStream.State extends Object
-
-
Constructor Summary
Constructors Constructor Description State()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description (package private) abstract void
cancel()
(package private) abstract void
close()
(package private) abstract void
flush()
(package private) abstract void
write(byte[] b, int off, int len)
(package private) abstract void
write(int b)
-
-
-
Method Detail
-
write
abstract void write(int b) throws IOException
- Throws:
IOException
-
write
abstract void write(byte[] b, int off, int len) throws IOException
- Throws:
IOException
-
flush
abstract void flush() throws IOException
- Throws:
IOException
-
close
abstract void close() throws IOException
- Throws:
IOException
-
cancel
abstract void cancel() throws IOException
- Throws:
IOException
-
-