All Downloads are FREE. Search and download functionalities are using the official Maven repository.

[email protected] Maven / Gradle / Ivy

There is a newer version: 1.17.0
Show newest version
module jsonrpc-cluster-provider-config {
    yang-version 1;
    namespace "urn:opendaylight:jsonrpc:cluster-provider:config";
    prefix jcpc;

    description "Configuration for JSONRPC cluster provider";

    revision "2020-07-08" {
        description "Initial revision.";
    }

    container config {
        leaf write-transaction-idle-timeout {
            type uint16;
            default 120;
            description "Idle time in seconds after which write transaction is cancelled
                         automatically.";
        }
        leaf actor-response-wait-time {
            type uint16 {
                range 1..max;
            }
            description "Time that slave actor will wait for response from master";
            default 10;
        }
        leaf rpc-response-wait-time {
            type uint16 {
                range 1..max;
            }
            description "Time that slave actor will wait for RPC response from master";
            default 30;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy