本文整理汇总了Java中chatty.util.chatlog.LogWriter.LogItem类的典型用法代码示例。如果您正苦于以下问题:Java LogItem类的具体用法?Java LogItem怎么用?Java LogItem使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
LogItem类属于chatty.util.chatlog.LogWriter包,在下文中一共展示了LogItem类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: close
import chatty.util.chatlog.LogWriter.LogItem; //导入依赖的package包/类
/**
* Closes the logging. Sends an item to tell the writer to close all files,
* then waits for the thread to finish, so this could take some time.
*/
public void close() {
try {
boolean added = queue.offer(new LogItem(null, null), MAX_WAIT, TimeUnit.MILLISECONDS);
if (added) {
writerThread.join(MAX_WAIT);
} else {
LOGGER.warning("Log: Could not close Log (Queue full)");
}
} catch (InterruptedException ex) {
LOGGER.warning("Log: Interrupted when waiting for Log to finish..");
Thread.currentThread().interrupt();
}
}
示例2: writeLine
import chatty.util.chatlog.LogWriter.LogItem; //导入依赖的package包/类
public void writeLine(String channel, String line) {
boolean added = queue.offer(new LogItem(channel, line));
if (!added) {
int current = errors.incrementAndGet();
if (current % 20 == 0) {
LOGGER.warning("Log: Failed writing "+errors+" lines (queue full)");
}
}
}