Skip to content

Commit

Permalink
Merge pull request #937 from connamara/nextver-1.13
Browse files Browse the repository at this point in the history
update github-pages site for 1.13 changes
  • Loading branch information
gbirchmeier authored Feb 4, 2025
2 parents 9ba0810 + 3196e49 commit 1d610a4
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
25 changes: 25 additions & 0 deletions tutorial/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,21 @@ QuickFIX Settings
</td>
<td class='default'>Y</td>
</tr>

<tr>
<td class='setting'>Encoding</td>
<td class='description'>
Specify an alternate character encoding, if your counterparty is using an encoding other than the FIX-mandated iso-8859-1.
<br/>
<strong>Note: This is a global setting. This setting will apply to ALL sessions.</strong>
</td>
<td class='valid'>
An value that is a valid parameter to `System.Text.Encoding.GetEncoding()` on your platform.
For instance: iso-8859-1, windows-1251, utf-8
</td>
<td class='default'>iso-8859-1</td>
</tr>

</table>


Expand Down Expand Up @@ -486,6 +501,16 @@ QuickFIX Settings
<td class='default'>N</td>
</tr>

<tr>
<td class='setting'>AllowUnknownEnumValues</td>
<td class='description'>If set to Y, values of enum fields will not be validated against the list of enum values. Unrecognized values will be permitted and not cause a reject.</td>
<td class='valid'>
<div>Y</div>
<div>N</div>
</td>
<td class='default'>N</td>
</tr>

<tr>
<td class="setting">CheckLatency</td>
<td class="description">If Y, messages must be received from the counterparty within a defined number of seconds (see MaxLatency). It is useful to turn this off if a system uses localtime for its timestamps instead of GMT.</td>
Expand Down
12 changes: 12 additions & 0 deletions tutorial/repeating-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,15 @@ for(int grpIndex = 1; grpIndex<= message.GetInt(Tags.NoSides); grpIndex += 1)
}
```

New in 1.13 - ReadGroups() iterator
===================================

In v1.13 we introduced a new method, `ReadGroups`, that allows you to iterate through
a set of groups with `foreach`:

```csharp
foreach (var grp in msg.ReadGroups<QuickFix.FIX44.TradeCaptureReport.NoSidesGroup>(552)) {
// ...do stuff with grp...
}
```

9 changes: 8 additions & 1 deletion web/views/about/credits.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,11 @@ Contributors
- Matt Lahner
- Nazar Mandzyk
- Michal Dachs

- Phung Nhat-Huy
- Allen Cai
- James Kitamirike
- Vasily Petruhin
- Ian Lee Claxton
- Hank Libman
- Sam Norris
- Zdeněk Sojma

0 comments on commit 1d610a4

Please sign in to comment.