Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump guava from 30.0-jre to 32.0.0-jre in /core #8

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Nov 17, 2022

  1. Avoid blocked event bus (#7)

    The old synchronization of asynchronous non-concurrent event handlers could lead to a blocked event bus with a single long-running event handler. For this to happen, the following situation had to occur:
    
    A event had to be thrown and a (asynchronous non-concurrent) handler has to take some time to process this event
    During this processing more events have to be thrown that have to be handled by this blocked event handler.
    In this case, the handling of the following events are blocked by the synchronization in the SynchronizedEventHandler class until the first event has been processed completely. Because the synchronization happens in the handleEvent method inside the handler, this blocks a thread of the executor per event, until all threads are blocked an therefore no more asynchronous events whatsoever can be processed any more.
    
    To avoid such situations, the synchronization is now done outside of the executor and its threads. To do so, the new class ExecutorSerializer is introduced. This class can be seen as a steward, that blocks events for event handlers, whenever a event handler of the same type is already queued in the executor to process another event. The waiting event is put in a queue outside the executor an will be taken into account again, whenever the first process has finished.
    pfeuffer committed Nov 17, 2022
    Configuration menu
    Copy the full SHA
    e4d9374 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2022

  1. Minor refactor

    Pilopa committed Nov 18, 2022
    Configuration menu
    Copy the full SHA
    2dccaf8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3e19032 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3978a7b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    52bb5da View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2023

  1. Bump guava from 30.0-jre to 32.0.0-jre in /core

    Bumps [guava](https://github.com/google/guava) from 30.0-jre to 32.0.0-jre.
    - [Release notes](https://github.com/google/guava/releases)
    - [Commits](https://github.com/google/guava/commits)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.guava:guava
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jun 14, 2023
    Configuration menu
    Copy the full SHA
    f98072d View commit details
    Browse the repository at this point in the history