DataComplex Inc. Releases the First Web Based Event Processing Solution


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News DataComplex Inc. Releases the First Web Based Event Processing Solution
# 1  
Old 03-08-2008
DataComplex Inc. Releases the First Web Based Event Processing Solution

PRWeb, March 7, 2008DataComplex today announced the opening of its EPCenter, the first online application for “knowledge workers” to creating complex event processing(CEP) solutions. CEP is a software tool for performing sophisticated analysis of data as its happening, finding meaningful patterns, and responding automatically. By using the EPCenter the people that manage a businesses process [...]

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XtPeekEvent()															     XtPeekEvent()

Name
  XtPeekEvent - return, but do not remove the event at	the head of an application's input queue.

Synopsis
  Boolean XtPeekEvent(event_return)
	 XEvent *event_return;

Inputs
  event_return
	      Returns the event information from the head event structure in the queue.

Returns
  True if the event at the head of the queue is an X event; False if it is a timer event or an alternate input source event.

Availability
  XtPeekEvent() has been superseded by XtAppPeekEvent().

Description
  XtPeekEvent() returns a copy of the X event at the head of the input queue, without removing it from the queue.  If there is an X event, it
  returns True.  If there are no X events pending, but there are timer or alternate events, XtPeekEvent() returns False.   If  there  are  no
  events pending, XtPeekEvent() blocks.

Usage
  XtPeekEvent()  has been superseded by XtAppPeekEvent(), which performs the same function on a per-application context basis.	XtPeekEvent()
  now calls XtAppPeekEvent() passing the default application context created by XtInitialize().  Very few programs need multiple  application
  contexts,  and  you  can continue to use XtPeekEvent() if you initialize your application with XtInitialize().  We recommend, however, that
  you use XtAppInitialize(), XtAppPeekEvent(), and the other XtApp*() application context specific functions.

  See XtAppPeekEvent() for more information.

  Programs rarely need this much control over the event dispatching mechanism.	Most programs use XtAppMainLoop().

See Also
  XtAppMainLoop(1), XtAppPeekEvent(1), XtAppPending(1).

Xt - Event Handling														     XtPeekEvent()