public class WidgetConfigUpdates
extends java.lang.Object
implements java.io.Externalizable
| Modifier and Type | Field and Description |
|---|---|
int[] |
changedAttributes
The list of changed field IDs.
|
java.lang.Object[] |
updates
The new field values.
|
int |
widgetId
The widget ID to which these changes belong.
|
private NativeTypeSerializer[] |
workers |
| Constructor and Description |
|---|
WidgetConfigUpdates()
Default c'tor.
|
WidgetConfigUpdates(int widgetId,
int[] changedAttributes,
java.lang.Object[] updates,
NativeTypeSerializer[] workers)
Collect the information related to widget config changes, to transfer it to a remote side.
|
| Modifier and Type | Method and Description |
|---|---|
void |
readExternal(java.io.ObjectInput in)
Replacement for the default object reading method.
|
void |
writeExternal(java.io.ObjectOutput out)
Replacement for the default object writing method.
|
public int widgetId
public int[] changedAttributes
public java.lang.Object[] updates
private NativeTypeSerializer[] workers
public WidgetConfigUpdates()
public WidgetConfigUpdates(int widgetId,
int[] changedAttributes,
java.lang.Object[] updates,
NativeTypeSerializer[] workers)
widgetId - The widget ID to which these changes belong.changedAttributes - The list of the changed field IDs.updates - An array with the new field values.workers - public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException
writeExternal in interface java.io.Externalizableout - The output destination to which fields will be saved.java.io.IOException - In case of I/O errors.public void readExternal(java.io.ObjectInput in)
throws java.io.IOException,
java.lang.ClassNotFoundException
readExternal in interface java.io.Externalizablein - The input source from which fields will be restored.java.io.IOException - In case of I/O errors.java.lang.ClassNotFoundException - If payload can't be instantiated.