Supporting CEP with Solace Content Routers


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Supporting CEP with Solace Content Routers
# 1  
Old 09-06-2008
Supporting CEP with Solace Content Routers

Tim Bass
09-06-2008 04:42 AM
Interested in content routing and event preprocessing*supporting future*CEP applications?* Check out Solace Systems.* You can click on the image below for a better picture of the Solace architecture for event processing.

Image

Solace provides sophisticated middleware functionality in hardware to monitor, filter, route, transform and secure very large volumes of events in real time and with minimal processing overhead.* Solace uses leading-edge FPGA, ASIC and network processor technology to increase throughput and lower latency of event processing. Applications such as fraud detection, algorithmic trading, compliance, insider trade monitoring, risk management and more can be tackled more effectively by separating the simple monitoring, filtering and normalization of raw events from the complex processing of select events. This event pre-processing takes the burden off CEP engines allowing individual engines to be much more effective.*



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl Telnet cisco routers

Hi all i have little problem finding solution about simple telnet script .... i have 250 routers and on some i have different password and on some they ask just for password no username. So for example 1,2,3 have username and password (user,password) 4, and 5 have different username and password... (0 Replies)
Discussion started by: IvanMP
0 Replies

2. Shell Programming and Scripting

Script for Ping for 10 routers in a mesh

Hello All, I have 10 routers, and need to write a script so that each router pings each other and get the result in a file. We need to further extract the min/avg/max result and write a script to put in a excel file. E.g. LAB-R3A-7609#ping 6.6.6.6 Type escape... (1 Reply)
Discussion started by: sanjugab
1 Replies

3. Infrastructure Monitoring

Script to configure few commands for a list of routers

Hi Can any one please guide me how can I configure a few commands for a few devices in file1.txt. username: user1 password: pass enable pass: ep file1.txt: device1.abc.com device2.abc.com router.xpy.com I want to apply all the config lines for each device in file1.txt ... (0 Replies)
Discussion started by: sureshcisco
0 Replies

4. IP Networking

two routers

It is possible to connect wireless router that has 4 ethernet connections and WAN connection with regular router that has UPLINK and WAN and 4 ethernet ports? (9 Replies)
Discussion started by: kasia
9 Replies

5. IP Networking

Linksys 4 port cable/dsl routers

i was reading this thread and someone mentioned problems with the linksys 4 portcable/dsl routers, (BEF4somethingsomethingsomething) this is what i use on my network, and works great, BUT i have had a few strange problems, well my question is not too much of a question, but i would like to know... (0 Replies)
Discussion started by: norsk hedensk
0 Replies

6. IP Networking

UNIX Routers/VPN

There is a small company with 3 locations in Idaho. Currently they are using UNIX with multiplexors from 10 years ago. They would like to speed up their downloads and connection speeds but don't want to pay more than they are paying right now. They currently pay $200/mo. The main office is in... (4 Replies)
Discussion started by: Jodibaxter
4 Replies
Login or Register to Ask a Question
CAM::PDF::Content(3pm)					User Contributed Perl Documentation				    CAM::PDF::Content(3pm)

NAME
CAM::PDF::Content - PDF page layout parser LICENSE
Same as CAM::PDF SYNOPSIS
use CAM::PDF; my $pdf = CAM::PDF->new($filename); my $contentTree = $pdf->getPageContentTree(4); $contentTree->validate() || die 'Syntax error'; print $contentTree->render('CAM::PDF::Renderer::Text'); $pdf->setPageContent(5, $contentTree->toString()); DESCRIPTION
This class is used to manipulate the layout commands for a single page of PDF. The page content is passed as a scalar and parsed according to Adobe's PDF Reference 3rd edition (for PDF v1.4). All of the commands from Appendix A of that document are parsed and understood. Much of the content object's functionality is wrapped up in renderers that can be applied to it. See the canonical renderer, CAM::PDF::GS, and the render() method below for more details. FUNCTIONS
$pkg->new($content) $pkg->new($content, $data) $pkg->new($content, $data, $verbose) Parse a scalar CONTENT containing PDF page layout content. Returns a parsed, but unvalidated, data structure. The DATA argument is a hash reference of contextual data that may be needed to work with content. This is only needed for toString() method (which needs "doc => CAM::PDF object" to work with images) and the render methods, to which the DATA reference is passed verbatim. See the individual renderer modules for details about required elements. The VERBOSE boolean indicates whether the parser should Carp when it encounters problems. The default is false. $self->parse($contentref) This is intended to be called by the new() method. The argument should be a reference to the content scalar. It's passed by reference so it is never copied. $self->validate() Returns a boolean if the parsed content tree conforms to the PDF specification. $self->render($rendererclass) Traverse the content tree using the specified rendering class. See CAM::PDF::GS or CAM::PDF::Renderer::Text for renderer examples. Renderers should typically derive from CAM::PDF::GS, but it's not essential. Typically returns an instance of the renderer class. The rendering class is loaded via "require" if not already in memory. $self->computeGS() $self->computeGS($skiptext) Traverses the content tree and computes the coordinates of each graphic point along the way. If the $skiptext boolean is true (default: false) then text blocks are ignored to save time, since they do not change the global graphic state. This is a thin wrapper around render() with CAM::PDF::GS or CAM::PDF::GS::NoText selected as the rendering class. $self->findImages() Traverse the content tree, accumulating embedded images and image references, according to the CAM::PDF::Renderer::Images renderer. $self->traverse($rendererclass) This recursive method is typically called only by wrapper methods, like render(). It instantiates renderers as needed and calls methods on them. $self->toString() Flattens a content tree back into a scalar, ready to be inserted back into a PDF document. Since whitespace is discarded by the parser, the resulting scalar will not be identical to the original. AUTHOR
See CAM::PDF perl v5.14.2 2012-07-08 CAM::PDF::Content(3pm)