![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
org.webjars.npm:sandglass
Advanced tools
Aggregates data stream timeline as time window.
#Install
npm install sandglass
#Usage
var Sandglass = require( 'sandglass' );
var sandglass = new Sandglass();
#Sandglass Instance Methods
##emit( data );
Send data to all SandStreams.
##absoluteSlice( timespan );
Slices data stream timeline with timespan and aggregates each slice of data stream. Next aggregation starts after one aggregation ends, and another one starts again and again.
Arguments
Returns
(sandStream): Fires aggregate
event after stream aggregation.
emitter.on( 'aggregate', callback );
callback
gets an array of streaming data.
Example
var sandStream = sandglass.absoluteSlice( 1000 );
setTimeout( function() { sandglass.emit( 1 ) }, 500 );
setTimeout( function() { sandglass.emit( 2 ) }, 800 );
setTimeout( function() { sandglass.emit( 3 ) }, 1700 );
setTimeout( function() { sandglass.emit( 4 ) }, 2100 );
setTimeout( function() { sandglass.emit( 5 ) }, 2300 );
setTimeout( function() { sandglass.emit( 6 ) }, 5000 );
sandStream.on( 'aggregate', function ( agg ) {
console.log( '@agg:', agg );
// => [ 1, 2, 3 ] (5 second later)
// => [ 4, 5 ] (10 second later)
// => [ 6 ] (15 second later)
// => [] (20 second later)
// ...
} );
##relativeSlice( timespan );
Slices data stream timeline with timespan and aggregates each slice of data stream. The aggregation starts at each incoming data, and it ends after it takes the timespan. (Same as delayedCount)
Arguments
Returns
(sandStream): Fires aggregate
event after stream aggregation.
emitter.on( 'aggregate', callback );
callback
gets an array of streaming data.
Example
var sandStream = sandglass.absoluteSlice( 1000 );
setTimeout( function() { sandglass.emit( 1 ) }, 500 );
setTimeout( function() { sandglass.emit( 2 ) }, 800 );
setTimeout( function() { sandglass.emit( 3 ) }, 1700 );
setTimeout( function() { sandglass.emit( 4 ) }, 2100 );
setTimeout( function() { sandglass.emit( 5 ) }, 2300 );
setTimeout( function() { sandglass.emit( 6 ) }, 5000 );
sandStream.on( 'aggregate', function ( agg ) {
console.log( '@agg:', agg );
// => [ 1, 2 ] ( 1.5 second later )
// => [ 2, 3 ] ( 1.8 second later )
// => [ 3, 4, 5 ] ( 2.7 second later )
// => [ 4, 5 ] ( 3.1 second later )
// => [ 5 ] ( 3.3 second later )
// => [ 6 ] ( 6 second later )
} );
##liveCount( timespan );
When data incomes, 'liveCount' reserve the data. At the same time 'liveCount' sends data as aggregation which was reserved untill at that time. Each data is disposed after it takes timespan.
Arguments
Returns
(sandStream): Fires aggregate
event after stream aggregation.
emitter.on( 'aggregate', callback );
callback
gets an array of reserved streaming data.
##delayedCount( timespan );
Aliase of relativeSlice (Same as relativeSlice). When data incomes, 'delayedCount' reserve the data. After it takes timespan, 'delayedCount' sends data as aggregation which was reserved untill at that time, and then the data is disposed.
#SandStream Instance Methods
##on( event, listener );
Set event listener.
sandStream.on( 'aggregate', function( agg ) {...} )
##off( event, listener );
Remove event listener.
##stop(); Stop aggregation. GC works.
##other methods see EventEmitter2
FAQs
WebJar for sandglass
We found that org.webjars.npm:sandglass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.