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

Optionally close connections when inactive #116

Merged
merged 29 commits into from
Sep 19, 2014

Commits on Jul 13, 2014

  1. Added a closeAfterInactivityTime option to channel config objects. …

    …Doesn't have teeth yet.
    Jon Chambers committed Jul 13, 2014
    Configuration menu
    Copy the full SHA
    ef6763d View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2014

  1. Added a handler that will close connections if they're idle for a pre…

    …scribed amount of time.
    Jon Chambers committed Sep 4, 2014
    Configuration menu
    Copy the full SHA
    0fef77c View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2014

  1. Removed a spurious block in a test.

    Jon Chambers committed Sep 5, 2014
    Configuration menu
    Copy the full SHA
    54d57a2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    44356fa View commit details
    Browse the repository at this point in the history
  3. Added support for shutting down immediately if a graceful shutdown at…

    …tempt times out. Still need to add tests.
    Jon Chambers committed Sep 5, 2014
    Configuration menu
    Copy the full SHA
    b0a027c View commit details
    Browse the repository at this point in the history
  4. Added a test for graceful shutdown timeouts.

    Jon Chambers committed Sep 5, 2014
    Configuration menu
    Copy the full SHA
    e7576fa View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2014

  1. Configuration menu
    Copy the full SHA
    6b39dde View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8a67836 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'close_connections_when_inactive' of github.com:relayrid…

    …es/pushy into close_after_send_attempt_limit
    
    Conflicts:
    	src/main/java/com/relayrides/pushy/apns/ApnsConnection.java
    	src/main/java/com/relayrides/pushy/apns/ApnsConnectionConfiguration.java
    jchambers committed Sep 6, 2014
    Configuration menu
    Copy the full SHA
    d08ad7a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d10f979 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    343c894 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'close_connections_when_inactive' of github.com:relayrid…

    …es/pushy into close_after_send_attempt_limit
    jchambers committed Sep 6, 2014
    Configuration menu
    Copy the full SHA
    263aca7 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2014

  1. Configuration menu
    Copy the full SHA
    7814c0f View commit details
    Browse the repository at this point in the history
  2. Added a clarifying comment.

    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    67e1123 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'close_connections_when_inactive' of github.com:relayrid…

    …es/pushy into graceful_shutdown_timeout
    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    8667e84 View commit details
    Browse the repository at this point in the history
  4. Fixed more copy constructor mistakes and added some clarifying commen…

    …ts to tests.
    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    e3507ae View commit details
    Browse the repository at this point in the history
  5. Merge branch 'close_connections_when_inactive' of github.com:relayrid…

    …es/pushy into close_after_send_attempt_limit
    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    dea9b7d View commit details
    Browse the repository at this point in the history
  6. Fixed a spelling error.

    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    b3b6e31 View commit details
    Browse the repository at this point in the history
  7. Added an explicit check for null configurations in the ApnsConnection…

    … constructor.
    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    2b4848d View commit details
    Browse the repository at this point in the history
  8. Let us never speak of this again.

    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    f5ab059 View commit details
    Browse the repository at this point in the history
  9. Reworded docs for clarity.

    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    10ede21 View commit details
    Browse the repository at this point in the history
  10. Merge branch 'close_connections_when_inactive' of github.com:relayrid…

    …es/pushy into graceful_shutdown_timeout
    
    Conflicts:
    	src/main/java/com/relayrides/pushy/apns/ApnsConnection.java
    	src/main/java/com/relayrides/pushy/apns/ApnsConnectionConfiguration.java
    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    1d6e774 View commit details
    Browse the repository at this point in the history
  11. Added still more clarifying comments.

    Jon Chambers committed Sep 8, 2014
    Configuration menu
    Copy the full SHA
    8d06356 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2014

  1. Merge pull request #117 from relayrides/graceful_shutdown_timeout

    Graceful shutdown timeouts
    jchambers committed Sep 9, 2014
    Configuration menu
    Copy the full SHA
    2febe14 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'close_connections_when_inactive' of github.com:relayrid…

    …es/pushy into close_after_send_attempt_limit
    
    Conflicts:
    	src/main/java/com/relayrides/pushy/apns/ApnsConnectionConfiguration.java
    	src/test/java/com/relayrides/pushy/apns/ApnsConnectionTest.java
    Jon Chambers committed Sep 9, 2014
    Configuration menu
    Copy the full SHA
    e85b249 View commit details
    Browse the repository at this point in the history
  3. Updated copy constructor, hashCode, equals, and tests for ApnsConnect…

    …ionConfiguration.
    Jon Chambers committed Sep 9, 2014
    Configuration menu
    Copy the full SHA
    524b9ec View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2014

  1. Restored some accidentally removed final modifiers.

    Jon Chambers committed Sep 19, 2014
    Configuration menu
    Copy the full SHA
    2f64f36 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #118 from relayrides/close_after_send_attempt_limit

    Optionally close connections after a set number of send attempts
    jchambers committed Sep 19, 2014
    Configuration menu
    Copy the full SHA
    5cf6ce1 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' of github.com:relayrides/pushy into close_conne…

    …ctions_when_inactive
    
    Conflicts:
    	src/main/java/com/relayrides/pushy/apns/ApnsConnection.java
    	src/test/java/com/relayrides/pushy/apns/ApnsConnectionTest.java
    Jon Chambers committed Sep 19, 2014
    Configuration menu
    Copy the full SHA
    afd937a View commit details
    Browse the repository at this point in the history