Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

32 строки
1.0 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  9. <xs:include schemaLocation="urn:magento:framework-message-queue:etc/queue_base.xsd" />
  10. <xs:element name="config">
  11. <xs:annotation>
  12. <xs:documentation>
  13. @deprecated
  14. Deprecated for RabbitMQ connection.
  15. </xs:documentation>
  16. </xs:annotation>
  17. <xs:complexType>
  18. <xs:choice minOccurs="0" maxOccurs="unbounded">
  19. <xs:element name="broker" type="brokerType"/>
  20. </xs:choice>
  21. </xs:complexType>
  22. <xs:unique name="broker-unique-name">
  23. <xs:selector xpath="broker"/>
  24. <xs:field xpath="@topic"/>
  25. </xs:unique>
  26. <xs:unique name="broker-queue-unique-name">
  27. <xs:selector xpath="broker/queue"/>
  28. <xs:field xpath="@name"/>
  29. </xs:unique>
  30. </xs:element>
  31. </xs:schema>