19 lines
508 B
VB.net
19 lines
508 B
VB.net
Imports System.ServiceModel
|
|
Imports ECM.JobRunner.Common
|
|
|
|
Namespace WCF
|
|
<ServiceContract(Name:="IEDMIService", [Namespace]:="http://DigitalData.Services.EDMIService")>
|
|
Public Interface IJobRunner
|
|
|
|
<OperationContract>
|
|
Function GetHeartbeat() As Date
|
|
|
|
<OperationContract>
|
|
Function GetJobHistory() As GetJobHistory.GetJobHistoryResponse
|
|
|
|
<OperationContract>
|
|
Function GetJobConfig() As GetJobConfig.GetJobConfigResponse
|
|
End Interface
|
|
|
|
End Namespace
|