Исходный код вики Компоненты

Версия 1.2 от Alexandr Fokin на 2022/11/27 23:22

Скрыть последних авторов
Alexandr Fokin 1.2 1 |(% style="width:40px" %)**Уровень**|(% style="width:218px" %)**Объект**|(% style="width:62px" %) |(% style="width:1157px" %)**Инициализация**
2 |(% style="width:40px" %)1|(% style="width:218px" %)IConnection|(% style="width:62px" %) |(% style="width:1157px" %){{code language="C#"}}connection.Start(){{/code}}
3 |(% style="width:40px" %)2|(% style="width:218px" %)ISession|(% style="width:62px" %) |(% style="width:1157px" %){{code language="C#"}}connection.CreateSession(){{/code}}
4 |(% style="width:40px" %)3|(% style="width:218px" %)IQueue|(% style="width:62px" %) |(% style="width:1157px" %){{code language="C#"}}session.GetQueue(name){{/code}}
5 |(% colspan="1" rowspan="2" style="width:40px" %)4|(% style="width:218px" %)IMessageProducer|(% style="width:62px" %) |(% style="width:1157px" %){{code language="C#"}}session.CreateProducer(session){{/code}}
6 |(% style="width:218px" %)IMessageConsumer|(% style="width:62px" %) |(% style="width:1157px" %){{code language="C#"}}session.CreateConsumer(
7 session,
8 selector,
9  false
10  ){{/code}}
11
12