File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ please submit a PR to make it better!
3535
3636Pretty simple:
3737- Add a reference to the [ FastHl7 Nuget package] ( https://www.nuget.org/packages/FastHl7/ )
38- - Create a message from a string:
38+ - Create a message from a string (or other ` ReadOnlySpan<char> ` :
3939 - ``` csharp
4040 using FastHl7 ;
41- var message = Message .Parse (hl7MessageString ); // Stream/ReadOnlySpan<char> overloads coming soon
41+ var message = Message .Parse (hl7MessageString );
4242 ```
4343
4444- Query segments , fields etc :
@@ -56,6 +56,9 @@ Pretty simple:
5656 var unescapedNote = noteText .Unescape ();
5757 ```
5858
59+ # Samples
60+ There 's an example of a high-performance MLLP listener (server) in the [samples](./src/samples/) directory.
61+
5962# Things to do (in no particular order)
6063
6164- [x ] Create a message
@@ -73,7 +76,7 @@ Pretty simple:
7376
7477
7578- Samples :
76- - [ ] MLLP listener that actually consumes and processes messages to prove out API
79+ - [x ] MLLP listener that actually consumes and processes messages to prove out API
7780- [x ] Low - alloc DateTime conversion helpers
7881
7982- [ ] Support MEL .ILogger for places we swallow exceptions etc??
You can’t perform that action at this time.
0 commit comments