DeliveryAnnotationsSection
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.apache.qpid.server.protocol.v1_0.type.messaging.DeliveryAnnotationsSection (Showing top 9 results out of 315)

origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

@Override
protected DeliveryAnnotationsSection createObject(final DescribedTypeConstructorRegistry describedTypeRegistry,
                         final QpidByteBuffer encodedForm)
{
  return new DeliveryAnnotationsSection(encodedForm);
}
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

public DeliveryAnnotationsSection getDeliveryAnnotationsSection()
{
  return _deliveryAnnotationsSection == null ? null : _deliveryAnnotationsSection.copy();
}
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

@Override
public void clearEncodedForm()
{
  if (_headerSection != null)
  {
    _headerSection.clearEncodedForm();
  }
  if (_deliveryAnnotationsSection != null)
  {
    _deliveryAnnotationsSection.clearEncodedForm();
  }
  if (_messageAnnotationsSection != null)
  {
    _messageAnnotationsSection.clearEncodedForm();
  }
  if (_propertiesSection != null)
  {
    _propertiesSection.clearEncodedForm();
  }
  if (_applicationPropertiesSection != null)
  {
    _applicationPropertiesSection.clearEncodedForm();
  }
  if (_footerSection != null)
  {
    _footerSection.clearEncodedForm();
  }
}
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

@Override
public void reallocate()
{
  if (_headerSection != null)
  {
    _headerSection.reallocate();
  }
  if (_deliveryAnnotationsSection != null)
  {
    _deliveryAnnotationsSection.reallocate();
  }
  if (_messageAnnotationsSection != null)
  {
    _messageAnnotationsSection.reallocate();
  }
  if (_propertiesSection != null)
  {
    _propertiesSection.reallocate();
  }
  if (_applicationPropertiesSection != null)
  {
    _applicationPropertiesSection.reallocate();
  }
  if (_footerSection != null)
  {
    _footerSection.reallocate();
  }
}
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

@Override
public int getStorableSize()
{
  long size = 17L;
  if (_headerSection != null)
  {
    size += _headerSection.getEncodedSize();
  }
  if (_deliveryAnnotationsSection != null)
  {
    size += _deliveryAnnotationsSection.getEncodedSize();
  }
  if (_messageAnnotationsSection != null)
  {
    size += _messageAnnotationsSection.getEncodedSize();
  }
  if (_propertiesSection != null)
  {
    size += _propertiesSection.getEncodedSize();
  }
  if (_applicationPropertiesSection != null)
  {
    size += _applicationPropertiesSection.getEncodedSize();
  }
  if (_footerSection != null)
  {
    size += _footerSection.getEncodedSize();
  }
  return (int) size;
}
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

_deliveryAnnotationsSection.dispose();
_deliveryAnnotationsSection = null;
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

_deliveryAnnotationsSection.writeTo(dest);
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

  @Override
  public DeliveryAnnotationsSection createEncodingRetainingSection()
  {
    return new DeliveryAnnotationsSection(this);
  }
}
origin: org.apache.qpid/qpid-broker-plugins-amqp-1-0-protocol

@Override
public DeliveryAnnotationsSection copy()
{
  return new DeliveryAnnotationsSection(this);
}
org.apache.qpid.server.protocol.v1_0.type.messagingDeliveryAnnotationsSection

Most used methods

  • <init>
  • clearEncodedForm
  • copy
  • dispose
  • getEncodedSize
  • reallocate
  • writeTo

Popular in Java

  • Reactive rest calls using spring rest template
  • getContentResolver (Context)
  • runOnUiThread (Activity)
  • requestLocationUpdates (LocationManager)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • JButton (javax.swing)
  • JCheckBox (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)