MCPcopy Create free account
hub / github.com/apache/storm / Tuple3

Method Tuple3

storm-client/src/jvm/org/apache/storm/streams/tuple/Tuple3.java:34–38  ·  view source on GitHub ↗

Constructs a new tuple. @param value1 the first element @param value2 the second element @param value3 the third element

(T1 value1, T2 value2, T3 value3)

Source from the content-addressed store, hash-verified

32 * @param value3 the third element
33 */
34 public Tuple3(T1 value1, T2 value2, T3 value3) {
35 this.value1 = value1;
36 this.value2 = value2;
37 this.value3 = value3;
38 }
39
40 @Override
41 public boolean equals(Object o) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected