ENT-3496 Check in InternalCordaRPCOps that somehow got missed...

This commit is contained in:
LankyDan 2019-06-11 09:20:36 +01:00
parent 330b5a1d3c
commit a60d657c7c

View File

@ -0,0 +1,12 @@
package net.corda.core.internal.messaging
import net.corda.core.messaging.CordaRPCOps
/**
* Contains internal RPC functions that should not be publicly exposed in [CordaRPCOps]
*/
interface InternalCordaRPCOps : CordaRPCOps {
/** Dump all the current flow checkpoints as JSON into a zip file in the node's log directory. */
fun dumpCheckpoints()
}