Nassau 1.0.0 contains major API changes. See below for details.
-
Clock
has been moved from thecom.paritytrading.nassau.time
package to thecom.paritytrading.nassau
package. -
MoldUDP64Client#receive()
andMoldUDP64Client#receiveResponse()
now return a Boolean value indicating whether data was received or not. -
Direct access to message fields in
SoupBinTCP.LoginRequest
,SoupBinTCP.LoginAccepted
, andSoupBinTCP.LoginRejected
has been replaced with getters and setters. Replace instances of direct access e.g. to theusername
field inSoupBinTCP.LoginRequest
with the corresponding getters and setters, such asgetUsername(String)
andsetUsername(String)
. -
SystemClock
does not exist anymore. Use theSystem::currentTimeMillis
method reference instead.