Interface BgpNeighborQueueCountersState

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    Queues, Queues

    @Generated("mdsal-binding-generator")
    public interface BgpNeighborQueueCountersState
    extends org.opendaylight.yangtools.yang.binding.DataObject
    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;
       }
     }
     
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
        YANG identifier of the statement represented by this class.
    • Method Detail

      • implementedInterface

        Class<? extends BgpNeighborQueueCountersState> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getInput

        org.opendaylight.yangtools.yang.common.Uint32 getInput()
        Return input, or null if it is not present.
             
                 The number of messages received from the peer currently queued
             
         
        Returns:
        Uint32 input, or null 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, or null if it is not present.
             
                 The number of messages queued to be sent to the peer
             
         
        Returns:
        Uint32 output, or null 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