Git Product home page Git Product logo

akka-actor-locking's People

Contributors

exnexu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

akka-actor-locking's Issues

Intersection processes

This test shows that different processes can be executed at the same time for the same object.

    "process sequential LockAwareMessages with relatively small timeout" in {
      val nTimes = 1 to 10
      val now = nowLong()
      val msg = LockAwareMessage(1, () โ‡’
        Future {
          val time1 = nowLong() - now
          Thread.sleep(100)
          val time2 = nowLong() - now
          self ! Timespan(1, time1, time2)
        }, 110.millis)

      nTimes.foreach(_ => lockActor ! msg)

      val timespans = nTimes.map(_ => expectMsgType[Timespan]).toList
      println(timespans)
      Timespan.isIntersecting(timespans) should be(false)
    }

test doesn't fail every time but if you run it repeatedly you will got an error.
Here is a sample result of failed test:
List(Timespan(1,32,136), Timespan(1,168,270), Timespan(1,169,273), Timespan(1,272,375), Timespan(1,274,379), Timespan(1,379,482), Timespan(1,380,484), Timespan(1,486,589), Timespan(1,483,587), Timespan(1,591,695))
As you can see the processes Timespan(1,168,270), Timespan(1,169,273) have Intersection

The description about order of execution

README states that:

lockActor ! LockAwareMessage(lock1, action1) // order is guaranteed
lockActor ! LockAwareMessage(lock1, action2) // runs right after action1 :-)

but I think this is depend on the order of arrival of LockAwareMessage.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.