Interface BgpNeighborQueueCountersState
- All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>
,org.opendaylight.yangtools.binding.BindingObject
,org.opendaylight.yangtools.binding.DataContainer
,org.opendaylight.yangtools.binding.Grouping
@Generated("mdsal-binding-generator")
public interface BgpNeighborQueueCountersState
extends org.opendaylight.yangtools.binding.Grouping
Counters relating to the message queues associated with the BGP peer
This class represents the following YANG schema fragment defined in module openconfig-bgp-operational
grouping bgp-neighbor-queue-counters_state { leaf input { type uint32; } leaf output { type uint32; } }
-
Method Summary
Modifier and TypeMethodDescriptionorg.opendaylight.yangtools.yang.common.Uint32
getInput()
Return input, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint32
Return output, ornull
if it is not present.default @NonNull org.opendaylight.yangtools.yang.common.Uint32
Return input, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint32
Return output, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getInput
org.opendaylight.yangtools.yang.common.Uint32 getInput()Return input, ornull
if it is not present.The number of messages received from the peer currently queued
- Returns:
Uint32
input, ornull
if it is not present.
-
requireInput
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireInput()Return input, guaranteed to be non-null.The number of messages received from the peer currently queued
- Returns:
Uint32
input, guaranteed to be non-null.- Throws:
NoSuchElementException
- if input is not present
-
getOutput
org.opendaylight.yangtools.yang.common.Uint32 getOutput()Return output, ornull
if it is not present.The number of messages queued to be sent to the peer
- Returns:
Uint32
output, ornull
if it is not present.
-
requireOutput
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireOutput()Return output, guaranteed to be non-null.The number of messages queued to be sent to the peer
- Returns:
Uint32
output, guaranteed to be non-null.- Throws:
NoSuchElementException
- if output is not present
-