stifle

WebJar for stifle

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

stifle
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

stifle
WebJar for stifle
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/twobitfool/stifle

Download stifle

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/stifle/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>stifle</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/stifle/
implementation 'org.webjars.npm:stifle:1.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/stifle/
implementation ("org.webjars.npm:stifle:1.1.0")
'org.webjars.npm:stifle:jar:1.1.0'
<dependency org="org.webjars.npm" name="stifle" rev="1.1.0">
  <artifact name="stifle" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='stifle', version='1.1.0')
)
libraryDependencies += "org.webjars.npm" % "stifle" % "1.1.0"
[org.webjars.npm/stifle "1.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

stifle

Wrap a function, so it is only called (at most) once every X milliseconds.

    var stifle = require('stifle')

    // A silly little clock
    function tellTime () {
      console.log('The time is now ' + new Date())
    }

    // Only show the time once per second
    var secondHand = stifle(tellTime, 1000)

    // Call it like crazy, but it will only fire once per second
    var interval = setInterval(secondHand, 10)

Cancellation

The wrapped function comes with a cancel method to kill any pending future invocations -- useful for shutting it down when a page or component is being unloaded.

    // Stop calling the secondHand
    clearInterval(interval)

    // Cancel pending calls, or else it will fire one more time
    secondHand.cancel()

No Extras

To keep it fast and simple, stifle does not support:

  • passing parameters
  • returning values
  • recursive invocation
  • "flushing" pending invocations
  • leading/trailing options

If you want those fancy features, check out lodash.throttle

Versions

Version
1.1.0