Kotlin "Destructuring declaration initializer of type Any must have a 'component1()' function..."

1k Views Asked by At

I have a for each loop

for(conn in connection) {
   var(first,second,third) = reader.getLatency(conn,LocationAssignment)
}

Where reader.getLatency is

open class LatencyReader {
    companion object {
        fun getLatency(conn: Connection, locationAssignment: HashMap<String, String>): Any {
            return Triple(LatencyReader.MissingLatency, LatencyReader.MissingLatency, LatencyReader.MissingLatency)

        }

        val MissingLatency: Int = 9999
    }

How can I access each element of reader.getLatency(conn,LocationAssignment), most importantly I want to access the last element or the third of the triple.

1

There are 1 best solutions below

1
On

Sweeper said in a comment:

Why does getLatency return Any. It should return Triple<Int, Int, Int>, shouldn't it?

which was the solution.