-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #993 from MakMukhi/mmukhi_keepalive_client
Point-to-point health check. Client side implementation
- Loading branch information
Showing
6 changed files
with
252 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package keepalive | ||
|
||
import ( | ||
"time" | ||
) | ||
|
||
// ClientParameters is used to set keepalive parameters on the client-side. | ||
// These configure how the client will actively probe to notice when a connection broken | ||
// and to cause activity so intermediaries are aware the connection is still in use. | ||
type ClientParameters struct { | ||
// After a duration of this time if the client doesn't see any activity it pings the server to see if the transport is still alive. | ||
Time time.Duration // The current default value is infinity. | ||
// After having pinged for keepalive check, the client waits for a duration of Timeout and if no activity is seen even after that | ||
// the connection is closed. | ||
Timeout time.Duration // The current default value is 20 seconds. | ||
// If true, client runs keepalive checks even with no active RPCs. | ||
PermitWithoutStream bool | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.