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
Yes, the reason for this is that it would now be possible to also serialize JsonSerializable objects which do not need to be Serializable. I will change it to List
extras/gwt/atmosphere-gwt-client/src/main/java/org/atmosphere/gwt/client/AtmosphereListener.java
Signature of onMessage changed to:
public void onMessage(List messages)
This is bad because now List is not generified. Consider List<?> or List depending on what you intended. It used to be List<? extends Serializable>.
The text was updated successfully, but these errors were encountered: