spark.SparkSetMessage
export interface SparkSetMessage {
type: 'set';
/** Key of the value to set */
key: string;
/** New value */
value: unknown;
}type('set')key(string)- – Key of the value to set
value(unknown)- – New value
Message sent to set a value in the worker.