Add missing empty methods to behave.

This commit is contained in:
szymonsztuka 2018-09-20 17:55:43 +01:00
parent cd8b802fcb
commit d1a831f7f2

View File

@ -241,6 +241,14 @@ class CordaRPCProxyClient(private val targetHostAndPort: NetworkHostAndPort) : C
TODO("not implemented")
}
override fun isWaitingForShutdown(): Boolean {
TODO("not implemented")
}
override fun terminate(drainPendingFlows: Boolean) {
TODO("not implemented")
}
private inline fun <reified T : Any> doPost(hostAndPort: NetworkHostAndPort, path: String, payload: ByteArray) : T {
val url = URL("http://$hostAndPort/rpc/$path")
val connection = url.openHttpConnection().apply {