Class BrokenTransform
- java.lang.Object
- 
- com.inductiveautomation.perspective.gateway.binding.BrokenTransform
 
- 
- 
Constructor SummaryConstructors Constructor Description BrokenTransform(java.lang.String diagnosticMessage)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.CompletableFuture<QualifiedValue>transform(QualifiedValue value)When the binding or previous transform emits a value, it will be given to this method.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface com.inductiveautomation.perspective.gateway.api.TransformresolveReferences, shutdown, startup
 
- 
 
- 
- 
- 
Method Detail- 
transformpublic java.util.concurrent.CompletableFuture<QualifiedValue> transform(QualifiedValue value) Description copied from interface:TransformWhen the binding or previous transform emits a value, it will be given to this method. The expectation is that the transform will then push the transformed value onto the callback given to it in the factory- Specified by:
- transformin interface- Transform
- Parameters:
- value- The input value to the- Transform. It could be the output value of the binding itself if the transform is first in the chain, or it could be a transformed value if it is after the first in the chain. The input- QualifiedValuecan never be null (though the value it wraps can be null)
 
 
- 
 
-