Interface NGCCEventSource
- All Known Implementing Classes:
NGCCInterleaveFilter,NGCCRuntime,NGCCRuntimeEx
public interface NGCCEventSource
- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
Method Summary
Modifier and TypeMethodDescriptionintreplace(NGCCEventReceiver _old, NGCCEventReceiver _new) Replaces an old handler with a new handler, and returns ID of the EventReceiver thread.voidsendEnterAttribute(int receiverThreadId, String uri, String local, String qname) voidsendEnterElement(int receiverThreadId, String uri, String local, String qname, Attributes atts) Sends an enter element event to the specified EventReceiver thread.voidsendLeaveAttribute(int receiverThreadId, String uri, String local, String qname) voidsendLeaveElement(int receiverThreadId, String uri, String local, String qname) void
-
Method Details
-
replace
Replaces an old handler with a new handler, and returns ID of the EventReceiver thread. -
sendEnterElement
void sendEnterElement(int receiverThreadId, String uri, String local, String qname, Attributes atts) throws SAXException Sends an enter element event to the specified EventReceiver thread.- Throws:
SAXException
-
sendLeaveElement
void sendLeaveElement(int receiverThreadId, String uri, String local, String qname) throws SAXException - Throws:
SAXException
-
sendEnterAttribute
void sendEnterAttribute(int receiverThreadId, String uri, String local, String qname) throws SAXException - Throws:
SAXException
-
sendLeaveAttribute
void sendLeaveAttribute(int receiverThreadId, String uri, String local, String qname) throws SAXException - Throws:
SAXException
-
sendText
- Throws:
SAXException
-