Package com.levigo.jadice.server.core
Interface QualifiedLogEventReceiver
-
- All Known Subinterfaces:
WorkerController<N>
- All Known Implementing Classes:
AbstractMSWorker
,AbstractUnArchiveWorker
,CobraHTMLRendererWorker
,Csv2XlsxWorker
,DemultiplexerWorker
,DocumentPrintWorker
,DummyWorker
,DynamicPipelineWorker
,EmbedAttachmentsWorker
,ExternalProcessCallWorker
,GhostscriptWorker
,HTML2TextWorker
,ImageMagickConvertWorker
,JadiceDocumentInfoWorker
,JadiceServerInfoWorker
,JavamailInputWorker
,LibreOfficeConversionWorker
,MailBodyCreatorWorker
,MessageRFC822Worker
,MSExcelWorker
,MSOutlookWorker
,MSPowerpointWorker
,MSProjectWorker
,MSVisioWorker
,MSWordWorker
,MultipartAlternativeWorker
,MultipartAppleDoubleWorker
,MultipartEncryptedWorker
,MultipartMixedWorker
,MultipartRelatedWorker
,MultipartSignedWorker
,MultiplexerWorker
,NodeWorker
,NotificationWorker
,NullWorker
,OLEExtractorWorker
,PageToImageWorker
,PDFAnnotationRemoverWorker
,PDFCompositeWorker
,PDFDecryptWorker
,PDFImageOptimizationWorker
,PDFMergeWorker
,PDFMetadataWorker
,PDFRotationWorker
,PDFSplitWorker
,PlaintextToXMLWorker
,PortableCollectionDisassemblingWorker
,PropertiesLogWorker
,ReshapeWorker
,RouterWorker
,ScriptWorker
,SeparatorPageWorker
,StreamAnalysisWorker
,StreamInputWorker
,StreamOutputWorker
,StreamWorker
,TIFFMergeWorker
,TIFFSplitWorker
,TNEFWorker
,UnGZIPWorker
,UnRARWorker
,UnSevenZIPWorker
,UnTARWorker
,UnZIPWorker
,URLInputWorker
,URLOutputWorker
,Vcf2HtmlWorker
,XRechnung2PdfWorker
,XSLFOFormatterWorker
,XSLTransformationWorker
,ZIPWorker
public interface QualifiedLogEventReceiver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
error(org.jadice.util.log.qualified.MessageID messageId, Object... args)
Emit a non-fatal error to be ultimately propagated toJobListener
.void
error(org.jadice.util.log.qualified.MessageID messageId, Throwable cause, Object... args)
Emit a non-fatal error to be ultimately propagated toJobListener
.void
error(org.jadice.util.log.qualified.QualifiedLogEvent event)
Emit a non-fatal error to be ultimately propagated toJobListener
.void
fail(org.jadice.util.log.qualified.MessageID messageId, Object... args)
Make the worker (and subsequently the node) fail due to the specified reason.void
fail(org.jadice.util.log.qualified.MessageID messageId, Throwable cause, Object... args)
Make the worker (and subsequently the node) fail due to the specified reason.void
fail(org.jadice.util.log.qualified.QualifiedLogEvent event)
Make the worker (and subsequently the node) fail due to the specified reason.void
warn(org.jadice.util.log.qualified.MessageID messageId, Object... args)
Emit a warning to be ultimately propagated toJobListener
.void
warn(org.jadice.util.log.qualified.MessageID messageId, Throwable cause, Object... args)
Emit a warning to be ultimately propagated toJobListener
.void
warn(org.jadice.util.log.qualified.QualifiedLogEvent event)
Emit a warning to be ultimately propagated toJobListener
.
-
-
-
Method Detail
-
warn
void warn(org.jadice.util.log.qualified.QualifiedLogEvent event)
Emit a warning to be ultimately propagated toJobListener
.- Parameters:
event
- the reason of the warning
-
warn
void warn(org.jadice.util.log.qualified.MessageID messageId, Throwable cause, Object... args)
Emit a warning to be ultimately propagated toJobListener
.- Parameters:
messageId
- The messageID of the reasoncause
- a Throwable that caused the warningargs
- optional arguments that will be resolved in anQualifiedLogEvent
-
warn
void warn(org.jadice.util.log.qualified.MessageID messageId, Object... args)
Emit a warning to be ultimately propagated toJobListener
.- Parameters:
messageId
- The messageID of the reasonargs
- optional arguments that will be resolved in anQualifiedLogEvent
-
error
void error(org.jadice.util.log.qualified.QualifiedLogEvent event)
Emit a non-fatal error to be ultimately propagated toJobListener
.- Parameters:
event
- the reason of the error
-
error
void error(org.jadice.util.log.qualified.MessageID messageId, Throwable cause, Object... args)
Emit a non-fatal error to be ultimately propagated toJobListener
.- Parameters:
messageId
- The messageID of the reasoncause
- a Throwable that caused the errorargs
- optional arguments that will be resolved in anQualifiedLogEvent
-
error
void error(org.jadice.util.log.qualified.MessageID messageId, Object... args)
Emit a non-fatal error to be ultimately propagated toJobListener
.- Parameters:
messageId
- The messageID of the reasonargs
- optional arguments that will be resolved in anQualifiedLogEvent
-
fail
void fail(org.jadice.util.log.qualified.QualifiedLogEvent event)
Make the worker (and subsequently the node) fail due to the specified reason. This method will always throw a special kind of RuntimeException used to bubble-up the failure information.- Parameters:
event
- the reason of the failure
-
fail
void fail(org.jadice.util.log.qualified.MessageID messageId, Throwable cause, Object... args)
Make the worker (and subsequently the node) fail due to the specified reason. This method will always throw a special kind of RuntimeException used to bubble-up the failure information.- Parameters:
messageId
- The messageID of the reasoncause
- a Throwable that caused the failureargs
- optional arguments that will be resolved in anQualifiedLogEvent
-
fail
void fail(org.jadice.util.log.qualified.MessageID messageId, Object... args)
Make the worker (and subsequently the node) fail due to the specified reason. This method will always throw a special kind of RuntimeException used to bubble-up the failure information.- Parameters:
messageId
- The messageID of the reasonargs
- optional arguments that will be resolved in anQualifiedLogEvent
-
-