613 lines
25 KiB
YAML
613 lines
25 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService
|
|
commentId: T:adas_core.Application.Services.Interfaces.IPublisherService
|
|
id: IPublisherService
|
|
parent: adas_core.Application.Services.Interfaces
|
|
children:
|
|
- adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(System.String)
|
|
- adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.Object,System.String)
|
|
- adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.String,System.String)
|
|
- adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(System.Object,System.String)
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: IPublisherService
|
|
nameWithType: IPublisherService
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService
|
|
type: Interface
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: IPublisherService
|
|
path: ../../adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
startLine: 2
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
syntax:
|
|
content: public interface IPublisherService
|
|
content.vb: Public Interface IPublisherService
|
|
derivedClasses:
|
|
- adas_core.Infrastructure.Services.PublisherService
|
|
extensionMethods:
|
|
- System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
|
- System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
|
- System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(System.String)
|
|
id: CreateQueue(System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IPublisherService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: CreateQueue(string)
|
|
nameWithType: IPublisherService.CreateQueue(string)
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: CreateQueue
|
|
path: ../../adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
startLine: 9
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Creates a new queue with the specified name.
|
|
example: []
|
|
syntax:
|
|
content: Task<bool> CreateQueue(string queueName)
|
|
parameters:
|
|
- id: queueName
|
|
type: System.String
|
|
description: The name of the queue to create.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: A task that represents the asynchronous operation. The task result is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the queue was created successfully; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
|
|
content.vb: Function CreateQueue(queueName As String) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue*
|
|
nameWithType.vb: IPublisherService.CreateQueue(String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue(String)
|
|
name.vb: CreateQueue(String)
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(System.Object,System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(System.Object,System.String)
|
|
id: SendMessageError(System.Object,System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IPublisherService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SendMessageError(object, string)
|
|
nameWithType: IPublisherService.SendMessageError(object, string)
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(object, string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: SendMessageError
|
|
path: ../../adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
startLine: 16
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously sends an error message to the specified message queue.
|
|
example: []
|
|
syntax:
|
|
content: Task<bool> SendMessageError(object obj, string queueName)
|
|
parameters:
|
|
- id: obj
|
|
type: System.Object
|
|
description: The error payload or message object to be sent to the queue.
|
|
- id: queueName
|
|
type: System.String
|
|
description: The name of the target message queue.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: A task that represents the asynchronous operation, containing a boolean value that indicates whether the message was successfully sent.
|
|
content.vb: Function SendMessageError(obj As Object, queueName As String) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError*
|
|
nameWithType.vb: IPublisherService.SendMessageError(Object, String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError(Object, String)
|
|
name.vb: SendMessageError(Object, String)
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.Object,System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.Object,System.String)
|
|
id: SendMessage(System.Object,System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IPublisherService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SendMessage(object, string)
|
|
nameWithType: IPublisherService.SendMessage(object, string)
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(object, string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: SendMessage
|
|
path: ../../adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
startLine: 23
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously sends the specified object as a message to the named queue.
|
|
example: []
|
|
syntax:
|
|
content: Task<bool> SendMessage(object obj, string queueName)
|
|
parameters:
|
|
- id: obj
|
|
type: System.Object
|
|
description: The object payload to serialize and publish to the queue.
|
|
- id: queueName
|
|
type: System.String
|
|
description: The name of the target queue that will receive the message.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: A task that resolves to <code>true</code> if the message was sent successfully, otherwise <code>false</code>.
|
|
content.vb: Function SendMessage(obj As Object, queueName As String) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage*
|
|
nameWithType.vb: IPublisherService.SendMessage(Object, String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(Object, String)
|
|
name.vb: SendMessage(Object, String)
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.String,System.String)
|
|
commentId: M:adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(System.String,System.String)
|
|
id: SendMessage(System.String,System.String)
|
|
parent: adas_core.Application.Services.Interfaces.IPublisherService
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: SendMessage(string, string)
|
|
nameWithType: IPublisherService.SendMessage(string, string)
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(string, string)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: SendMessage
|
|
path: ../../adas-core.Application/Services/Interfaces/IPublisherService.cs
|
|
startLine: 30
|
|
assemblies:
|
|
- adas-core.Application
|
|
namespace: adas_core.Application.Services.Interfaces
|
|
summary: Asynchronously sends a message to the specified message queue and returns a value indicating whether the operation succeeded.
|
|
example: []
|
|
syntax:
|
|
content: Task<bool> SendMessage(string message, string queueName)
|
|
parameters:
|
|
- id: message
|
|
type: System.String
|
|
description: The message content to be sent to the queue.
|
|
- id: queueName
|
|
type: System.String
|
|
description: The name of the target queue where the message will be delivered.
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Boolean}
|
|
description: A task that represents the asynchronous operation. The task result is <code>true</code> if the message was sent successfully; otherwise, <code>false</code>.
|
|
content.vb: Function SendMessage(message As String, queueName As String) As Task(Of Boolean)
|
|
overload: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage*
|
|
nameWithType.vb: IPublisherService.SendMessage(String, String)
|
|
fullName.vb: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage(String, String)
|
|
name.vb: SendMessage(String, String)
|
|
references:
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
commentId: N:adas_core.Application.Services.Interfaces
|
|
href: adas_core.html
|
|
name: adas_core.Application.Services.Interfaces
|
|
nameWithType: adas_core.Application.Services.Interfaces
|
|
fullName: adas_core.Application.Services.Interfaces
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Services.Interfaces.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Application
|
|
name: Application
|
|
href: adas_core.Application.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services
|
|
name: Services
|
|
href: adas_core.Application.Services.html
|
|
- name: .
|
|
- uid: adas_core.Application.Services.Interfaces
|
|
name: Interfaces
|
|
href: adas_core.Application.Services.Interfaces.html
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
parent: adas_core.Domain.Utils.NumberUtils
|
|
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
parent: adas_core.Domain.Utils.ObjectUtils
|
|
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
name: IsNumber(object)
|
|
nameWithType: NumberUtils.IsNumber(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
|
|
nameWithType.vb: NumberUtils.IsNumber(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
|
|
name.vb: IsNumber(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
|
|
name: IsNumber
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.NumberUtils
|
|
commentId: T:adas_core.Domain.Utils.NumberUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.NumberUtils.html
|
|
name: NumberUtils
|
|
nameWithType: NumberUtils
|
|
fullName: adas_core.Domain.Utils.NumberUtils
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
name: ToDouble(object)
|
|
nameWithType: NumberUtils.ToDouble(object)
|
|
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
|
|
nameWithType.vb: NumberUtils.ToDouble(Object)
|
|
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
|
|
name.vb: ToDouble(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
|
|
name: ToDouble
|
|
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
isExternal: true
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
name: ToStr(object)
|
|
nameWithType: ObjectUtils.ToStr(object)
|
|
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
|
|
nameWithType.vb: ObjectUtils.ToStr(Object)
|
|
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
|
|
name.vb: ToStr(Object)
|
|
spec.csharp:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
|
|
name: ToStr
|
|
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: adas_core.Domain.Utils.ObjectUtils
|
|
commentId: T:adas_core.Domain.Utils.ObjectUtils
|
|
parent: adas_core.Domain.Utils
|
|
href: adas_core.Domain.Utils.ObjectUtils.html
|
|
name: ObjectUtils
|
|
nameWithType: ObjectUtils
|
|
fullName: adas_core.Domain.Utils.ObjectUtils
|
|
- uid: adas_core.Domain.Utils
|
|
commentId: N:adas_core.Domain.Utils
|
|
href: adas_core.html
|
|
name: adas_core.Domain.Utils
|
|
nameWithType: adas_core.Domain.Utils
|
|
fullName: adas_core.Domain.Utils
|
|
spec.csharp:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
spec.vb:
|
|
- uid: adas_core
|
|
name: adas_core
|
|
href: adas_core.html
|
|
- name: .
|
|
- uid: adas_core.Domain
|
|
name: Domain
|
|
href: adas_core.Domain.html
|
|
- name: .
|
|
- uid: adas_core.Domain.Utils
|
|
name: Utils
|
|
href: adas_core.Domain.Utils.html
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue
|
|
href: adas_core.Application.Services.Interfaces.IPublisherService.html#adas_core_Application_Services_Interfaces_IPublisherService_CreateQueue_System_String_
|
|
name: CreateQueue
|
|
nameWithType: IPublisherService.CreateQueue
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService.CreateQueue
|
|
- uid: System.String
|
|
commentId: T:System.String
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
name: string
|
|
nameWithType: string
|
|
fullName: string
|
|
nameWithType.vb: String
|
|
fullName.vb: String
|
|
name.vb: String
|
|
- uid: System.Threading.Tasks.Task{System.Boolean}
|
|
commentId: T:System.Threading.Tasks.Task{System.Boolean}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<bool>
|
|
nameWithType: Task<bool>
|
|
fullName: System.Threading.Tasks.Task<bool>
|
|
nameWithType.vb: Task(Of Boolean)
|
|
fullName.vb: System.Threading.Tasks.Task(Of Boolean)
|
|
name.vb: Task(Of Boolean)
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- uid: System.Boolean
|
|
name: bool
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.Boolean
|
|
name: Boolean
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
|
- name: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: System.Threading.Tasks.Task`1
|
|
commentId: T:System.Threading.Tasks.Task`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<TResult>
|
|
nameWithType: Task<TResult>
|
|
fullName: System.Threading.Tasks.Task<TResult>
|
|
nameWithType.vb: Task(Of TResult)
|
|
fullName.vb: System.Threading.Tasks.Task(Of TResult)
|
|
name.vb: Task(Of TResult)
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- name: TResult
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: TResult
|
|
- name: )
|
|
- uid: System.Threading.Tasks
|
|
commentId: N:System.Threading.Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Threading.Tasks
|
|
nameWithType: System.Threading.Tasks
|
|
fullName: System.Threading.Tasks
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Threading
|
|
name: Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading
|
|
- name: .
|
|
- uid: System.Threading.Tasks
|
|
name: Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Threading
|
|
name: Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading
|
|
- name: .
|
|
- uid: System.Threading.Tasks
|
|
name: Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError
|
|
href: adas_core.Application.Services.Interfaces.IPublisherService.html#adas_core_Application_Services_Interfaces_IPublisherService_SendMessageError_System_Object_System_String_
|
|
name: SendMessageError
|
|
nameWithType: IPublisherService.SendMessageError
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessageError
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
name: object
|
|
nameWithType: object
|
|
fullName: object
|
|
nameWithType.vb: Object
|
|
fullName.vb: Object
|
|
name.vb: Object
|
|
- uid: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage*
|
|
commentId: Overload:adas_core.Application.Services.Interfaces.IPublisherService.SendMessage
|
|
href: adas_core.Application.Services.Interfaces.IPublisherService.html#adas_core_Application_Services_Interfaces_IPublisherService_SendMessage_System_Object_System_String_
|
|
name: SendMessage
|
|
nameWithType: IPublisherService.SendMessage
|
|
fullName: adas_core.Application.Services.Interfaces.IPublisherService.SendMessage
|