fedjabosnic / hotfix

Low latency fix engine for .net
GNU Lesser General Public License v3.0
16 stars 5 forks source link

Message cloning #38

Open fedjabosnic opened 7 years ago

fedjabosnic commented 7 years ago

It would be very useful to provide message cloning out of the box as well as have the ability to copy fields from message to message...

// Clone entire message
var clone = inbound.Clone();

// Copy field between messages
outbound[55] = inbound[55];