mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
19 lines
485 B
Kotlin
19 lines
485 B
Kotlin
package com.intellij.remoteDev.tests.modelSources
|
|
|
|
import com.jetbrains.rd.generator.nova.*
|
|
import com.jetbrains.rd.generator.nova.PredefinedType.string
|
|
import com.jetbrains.rd.generator.nova.PredefinedType.void
|
|
|
|
/**
|
|
* Model to bind client <-> server agents during test session
|
|
*/
|
|
@Suppress("unused")
|
|
object DistributedTestBridgeModel : Ext(TestRoot) {
|
|
|
|
init {
|
|
call("syncCall", void, void).async
|
|
signal("sendMessage", string)
|
|
.doc("Send message between peers")
|
|
}
|
|
}
|