Skip to content

Commit 8a9cf58

Browse files
committed
docs: update readme
1 parent baa6ac7 commit 8a9cf58

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

readme.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ please submit a PR to make it better!
3535

3636
Pretty 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??

0 commit comments

Comments
 (0)