THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
Code Block | ||
---|---|---|
| ||
package org.apache.flink.streaming.api.operators;
/**
* OperatorAttributes element provides Job Manager with information that can be
* used to optimize job performance.
*/
@PublicEvolving
public class OperatorAttributes extends RuntimeEvent {
/**
* Returns false if it is guaranteed that the operator will not store and access reference to the
* StreamRecord#value that it has already emitted.
*/
public boolean isOutputStreamRecordValueStored() {...}
/**
* Return false if it is guaranteed that the operator will not store and access reference to the
* input StreamRecord instance.
*/
public boolean isInputStreamRecordStored() {...}
} |
...