Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: projectodd/wunderboss
base: 9f7e1b72f7f1
Choose a base ref
...
head repository: projectodd/wunderboss
compare: 27292899c889
Choose a head ref
  • 2 commits
  • 7 files changed
  • 1 contributor

Commits on Jan 27, 2015

  1. Add a managed thread pool component.

    This adds an Executor that can be looked up as a component, and will be
    shutdown by wboss when it shuts down.
    tobias committed Jan 27, 2015
    Copy the full SHA
    81059bb View commit details
    Browse the repository at this point in the history
  2. Make http stream send async in undertow.

    We now put sends on a queue, and send from another thread (using
    undertow's worker thread pool). If backpressure is needed to prevent
    overwhelming the queue, callers should register onComplete handlers for
    each send, and wait to enqueue data after the prior send completes.
    
    This also includes async send in WildFly (using a ThreadPool component),
    but is pending due to https://issues.jboss.org/browse/WFLY-3715
    preventing it from working in WF 8.x.
    tobias committed Jan 27, 2015
    Copy the full SHA
    2729289 View commit details
    Browse the repository at this point in the history