Ruckus
10/22/2018, 5:49 PMclient.onMessage { (msg, sender) -> println("$sender: $msg") }
skneko
10/22/2018, 5:49 PMTravis Griggs
10/22/2018, 6:28 PMskneko
10/22/2018, 6:28 PMskneko
10/22/2018, 6:28 PMskneko
10/22/2018, 6:32 PMnwh
10/22/2018, 7:31 PMfun sample(vararg args: Any) {}
sample(args=1, 2, 3) // errors
Is it a technical limitation or a design choice?Shawn
10/22/2018, 7:34 PMShawn
10/22/2018, 7:34 PMargs = *arrayOf(foo, bar, baz)
Davio
10/23/2018, 6:59 AMkarelpeeters
10/23/2018, 7:00 AMtypealias
for that.Davio
10/23/2018, 7:02 AMkarelpeeters
10/23/2018, 7:02 AMDavio
10/23/2018, 7:03 AMrobstoll
10/23/2018, 8:26 AMkarelpeeters
10/23/2018, 8:26 AMVarun Sharma
10/23/2018, 9:08 AMBernhard
10/23/2018, 9:44 AMsp33dy
10/23/2018, 12:15 PMsp33dy
10/23/2018, 12:15 PMsp33dy
10/23/2018, 12:55 PMDico
10/23/2018, 1:06 PMinline fun
if it were Kotlin). 😁karelpeeters
10/23/2018, 1:39 PMitnoles
10/24/2018, 2:22 AMPraemix
10/24/2018, 10:18 AMTsvetozar Bonev
10/24/2018, 1:49 PMrepo.update(Catalogue::id eq it, childCatalogue?.copy(parentId = catalogue.parentId))
This is the function in questionHexa
10/24/2018, 2:17 PMval testService: TestService = TestServiceImpl(client)
into my TestHandler
constructor. The problem is TestServiceImpl takes in a client
and client
is not really known until this line (line8) finished executing val client = clientProviderInterfaceImpl.buildIoTClient(validatedResult)
Andreas Sinz
10/24/2018, 2:25 PMtestService
, why do you need it at the class level?Hexa
10/24/2018, 2:26 PMTestHandler
?hdarritchon
10/24/2018, 4:27 PM