Sponsored Content
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Effective Decision Support in Near-Real Time Post 302439911 by Linux Bot on Saturday 24th of July 2010 11:15:06 PM
Old 07-25-2010
Effective Decision Support in Near-Real Time

INDUSTRY VIEW by Allen Avery, AutomationWorld.com With increased data throughput and higher data resolutions, historians have also become a foundation for plant asset management initiatives, thanks to new visibility and trending tools. Today’s historians also support techniques, such as complex event processing, which can analyze multiple streams of plant data in real time to identify and diagnose [...]

More...
 

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Real and Effective IDs

Can anyone explain me in details of Real and Effective IDs (6 Replies)
Discussion started by: kkalyan
6 Replies

2. Programming

Real, effective and saved user id in C program

I figured it out by now. (0 Replies)
Discussion started by: Ralph
0 Replies
Mojo::Asset(3pm)					User Contributed Perl Documentation					  Mojo::Asset(3pm)

NAME
Mojo::Asset - HTTP 1.1 content storage base class SYNOPSIS
use Mojo::Base 'Mojo::Asset'; DESCRIPTION
Mojo::Asset is an abstract base class for HTTP 1.1 content storage. ATTRIBUTES
Mojo::Asset implements the following attributes. "end_range" my $end = $asset->end_range; $asset = $asset->end_range(8); Pretend file ends earlier. "start_range" my $start = $asset->start_range; $asset = $asset->start_range(0); Pretend file starts later. METHODS
Mojo::Asset inherits all methods from Mojo::EventEmitter and implements the following new ones. "add_chunk" $asset = $asset->add_chunk('foo bar baz'); Add chunk of data to asset, meant to be overloaded in a subclass. "contains" my $position = $asset->contains('bar'); Check if asset contains a specific string, meant to be overloaded in a subclass. "get_chunk" my $chunk = $asset->get_chunk($offset); Get chunk of data starting from a specific position, meant to be overloaded in a subclass. "is_file" my $false = $asset->is_file; False. "move_to" $asset = $asset->move_to('/home/sri/foo.txt'); Move asset data into a specific file, meant to be overloaded in a subclass. "size" my $size = $asset->size; Size of asset data in bytes, meant to be overloaded in a subclass. "slurp" my $string = $asset->slurp; Read all asset data at once. Meant to be overloaded in a subclass. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Asset(3pm)
All times are GMT -4. The time now is 12:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy