You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So far OSCCore uses its own serialization technique. Swift 4 brings in Codables providing a standard way of doing it.
Transforming current implementation covers the following tasks.
High level transformation: make compound types conform to Codable. Affected types are OSCMessage, OSCMessageArgument and OSCBundle.
Low level transformation: provide own Encoder and Decoder - will be a quite hard task.
Revisit tests: testing type to binary stream serialization and serialization details should be broken down to two parts (now details are verified in the same test pass).
The text was updated successfully, but these errors were encountered:
Scope
So far OSCCore uses its own serialization technique. Swift 4 brings in Codables providing a standard way of doing it.
Transforming current implementation covers the following tasks.
Codable
. Affected types areOSCMessage
,OSCMessageArgument
andOSCBundle
.Encoder
andDecoder
- will be a quite hard task.The text was updated successfully, but these errors were encountered: