-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(headers): add last-event-id header
Add a Last-Event-ID header to properly work with Server-Sent Events Addresses # 723
- Loading branch information
1 parent
e226453
commit e1542a6
Showing
1 changed file
with
30 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
header! { | ||
/// `Last-Event-ID` header, defined in | ||
/// [RFC3864](https://html.spec.whatwg.org/multipage/references.html#refsRFC3864) | ||
/// | ||
/// The `Last-Event-ID` header contains information about | ||
/// the last event in an http interaction so that it's easier to | ||
/// track of event state. This is helpful when working | ||
/// with [Server-Sent-Events](http://www.html5rocks.com/en/tutorials/eventsource/basics/). If the connection were to be dropped, for example, it'd | ||
/// be useful to let the server know what the last event you | ||
/// recieved was. | ||
/// | ||
/// The spec is a String with the id of the last event, it can be | ||
/// an empty string which acts a sort of "reset". | ||
/// | ||
/// # Example | ||
/// ``` | ||
/// use hyper::header::{Headers, LastEventID}; | ||
/// | ||
/// let mut headers = Headers::new(); | ||
/// headers.set(LastEventID("1".to_owned())); | ||
/// ``` | ||
(LastEventID, "Last-Event-ID") => [String] | ||
|
||
test_last_event_id { | ||
// Initial state | ||
test_header!(test1, vec![b""]); | ||
// Own testcase | ||
test_header!(test2, vec![b"1"], Some(LastEventID("1".to_owned()))); | ||
} | ||
} |