本文整理汇总了Java中java.io.Flushable类的典型用法代码示例。如果您正苦于以下问题:Java Flushable类的具体用法?Java Flushable怎么用?Java Flushable使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Flushable类属于java.io包,在下文中一共展示了Flushable类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: flush
import java.io.Flushable; //导入依赖的package包/类
private void flush(LinkedList<Request> toFlush)
throws IOException, RequestProcessorException
{
if (toFlush.isEmpty())
return;
zks.getZKDatabase().commit();
while (!toFlush.isEmpty()) {
Request i = toFlush.remove();
if (nextProcessor != null) {
nextProcessor.processRequest(i);
}
}
if (nextProcessor != null && nextProcessor instanceof Flushable) {
((Flushable)nextProcessor).flush();
}
}
示例2: flush
import java.io.Flushable; //导入依赖的package包/类
@ApiMethod
@Comment(value = "Simply calls stream.flush() but throws RuntimeException instead of IOException")
public static void flush(Flushable stream)
{
try
{
if (stream != null)
{
stream.flush();
}
}
catch (Exception ex)
{
Lang.rethrow(ex);
}
}
示例3: flush
import java.io.Flushable; //导入依赖的package包/类
private void flush(GaugeWriter writer) {
if (writer instanceof CompositeMetricWriter) {
for (MetricWriter child : (CompositeMetricWriter) writer) {
flush(child);
}
}
try {
if (ClassUtils.isPresent("java.io.Flushable", null)) {
if (writer instanceof Flushable) {
((Flushable) writer).flush();
return;
}
}
Method method = ReflectionUtils.findMethod(writer.getClass(), "flush");
if (method != null) {
ReflectionUtils.invokeMethod(method, writer);
}
}
catch (Exception ex) {
logger.warn("Could not flush MetricWriter: " + ex.getClass() + ": "
+ ex.getMessage());
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:24,代码来源:MetricCopyExporter.java
示例4: flush
import java.io.Flushable; //导入依赖的package包/类
/**
* Flushes the formatter, writing any cached data to the output
* stream. If the underlying output stream supports the
* {@link Flushable} interface, it is also flushed.
*
* @throws FormatterClosedException if the formatter is closed.
*/
public void flush()
{
if (closed)
throw new FormatterClosedException();
try
{
if (out instanceof Flushable)
((Flushable) out).flush();
}
catch (IOException _)
{
// FIXME: do we ignore these or do we set ioException?
// The docs seem to indicate that we should ignore.
}
}
示例5: flush
import java.io.Flushable; //导入依赖的package包/类
/**
* Flushes the formatter, writing any cached data to the output
* stream. If the underlying output stream supports the
* {@link Flushable} interface, it is also flushed.
*
* @throws FormatterClosedException if the formatter is closed.
*/
public void flush()
{
if (closed)
throw new FormatterClosedException();
try
{
if (out instanceof Flushable)
((Flushable) out).flush();
}
catch (IOException _)
{
// FIXME: do we ignore these or do we set ioException?
// The docs seem to indicate that we should ignore.
}
}
示例6: flush
import java.io.Flushable; //导入依赖的package包/类
private void flush(MetricWriter writer) {
if (writer instanceof CompositeMetricWriter) {
for (MetricWriter child : (CompositeMetricWriter) writer) {
flush(child);
}
}
try {
if (ClassUtils.isPresent("java.io.Flushable", null)) {
if (writer instanceof Flushable) {
((Flushable) writer).flush();
return;
}
}
Method method = ReflectionUtils.findMethod(writer.getClass(), "flush");
if (method != null) {
ReflectionUtils.invokeMethod(method, writer);
}
}
catch (Exception ex) {
logger.warn("Could not flush MetricWriter: " + ex.getClass() + ": "
+ ex.getMessage());
}
}
示例7: readLine
import java.io.Flushable; //导入依赖的package包/类
@Override
public String readLine(String prompt, Character mask)
throws IOException
{
String line;
interrupted = false;
try {
line = super.readLine(prompt, mask);
}
catch (UserInterruptException e) {
interrupted = true;
return null;
}
if (getHistory() instanceof Flushable) {
((Flushable) getHistory()).flush();
}
return line;
}
示例8: handleNotification
import java.io.Flushable; //导入依赖的package包/类
@Override
public void handleNotification(Notification notification, Object handback) {
if(!notification.getType().equals(MemoryNotificationInfo.MEMORY_THRESHOLD_EXCEEDED)) return;
logger.info("MemoryNotifier::activate");
//--- copy the list of listener's in a thread-safe way; doesn't matter if we get an update while we're notifying this way.
final List<Flushable> toNotify = new ArrayList<>();
synchronized (instance) {
toNotify.addAll(listeners);
}
//--- spawn a thread to handle flushing; don't do multiple because threads can be heavy on the memory usage.
Thread deferred = new Thread() {
public void run() {
for (final Flushable flushable : toNotify) {
try {
flushable.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
}
};
deferred.start();
}
示例9: testFlush
import java.io.Flushable; //导入依赖的package包/类
/**
* Test method flush
*/
@Test
public void testFlush ()
{
// flush null stream
assertFalse (StreamHelper.flush ((Flushable) null).isSuccess ());
// flush stream with exception
assertFalse (StreamHelper.flush (new MockThrowingFlushable ()).isSuccess ());
// flush without exception
assertTrue (StreamHelper.flush (new MockFlushable ()).isSuccess ());
final MockCloseableWithState c = new MockCloseableWithState ();
assertTrue (StreamHelper.flush (c).isSuccess ());
assertFalse (c.isClosed ());
assertTrue (c.isFlushed ());
StreamHelper.close (new FilterOutputStream (null));
}
示例10: test_flush
import java.io.Flushable; //导入依赖的package包/类
/**
* @tests java.util.Formatter#flush()
*/
public void test_flush() throws IOException {
Formatter f = null;
f = new Formatter(notExist);
assertTrue(f instanceof Flushable);
f.close();
try {
f.flush();
fail("should throw FormatterClosedException");
} catch (FormatterClosedException e) {
// expected
}
f = new Formatter();
// For destination that does not implement Flushable
// No exception should be thrown
f.flush();
}
示例11: flush
import java.io.Flushable; //导入依赖的package包/类
public static void flush(Flushable paramFlushable, boolean paramBoolean)
throws IOException
{
try
{
paramFlushable.flush();
return;
}
catch (IOException localIOException)
{
if (paramBoolean)
{
logger.log(Level.WARNING, "IOException thrown while flushing Flushable.", localIOException);
return;
}
}
throw localIOException;
}
示例12: testAppendAndFlush
import java.io.Flushable; //导入依赖的package包/类
@Test
public void testAppendAndFlush() throws Exception {
final StringBuilder progress = new StringBuilder();
Flushable flushable =
new Flushable() {
@Override
public void flush() {
progress.append("F");
}
};
CountingFlushableAppendable c = new CountingFlushableAppendable(progress, flushable);
assertThat(c.getAppendedCountSinceLastFlush()).isEqualTo(0);
c.append("12");
assertThat(c.getAppendedCountSinceLastFlush()).isEqualTo(2);
c.append("3");
assertThat(c.getAppendedCountSinceLastFlush()).isEqualTo(3);
c.flush();
assertThat(c.getAppendedCountSinceLastFlush()).isEqualTo(0);
c.append('c');
assertThat(c.getAppendedCountSinceLastFlush()).isEqualTo(1);
c.append("123", 1, 2);
assertThat(progress.toString()).isEqualTo("123Fc2");
}
示例13: flush
import java.io.Flushable; //导入依赖的package包/类
@Override
public synchronized void flush() {
// thread safe flush of the writers
if (writer != null) {
writer.flush();
}
if (this.callback instanceof Flushable) {
try {
((Flushable) callback).flush();
}
catch (final IOException e) {
LOGGER.error(
"Cannot flush callbacks",
e);
}
}
}
示例14: AnsiConsole
import java.io.Flushable; //导入依赖的package包/类
public AnsiConsole(Appendable target, Flushable flushable, ColorMap colorMap, boolean forceAnsi) {
this.target = target;
this.flushable = flushable;
this.colorMap = colorMap;
textArea = new TextAreaImpl(textCursor);
statusBar = new LabelImpl(statusBarCursor);
this.forceAnsi = forceAnsi;
}
示例15: flushQuietly
import java.io.Flushable; //导入依赖的package包/类
public static void flushQuietly(Flushable flushable) {
if (flushable == null) return;
try {
flushable.flush();
} catch (Exception e) {
OkLogger.printStackTrace(e);
}
}