使用WCF通信的服务结构可靠服务

时间:2016-05-04 20:15:41

标签: c# wcf azure-service-fabric

我没有太多运气使用WCFCommunicationListener找到有状态可靠服务的示例。我想我的断开连接是你实施操作合同的地方。它是在主服务类中完成的吗?您无法将svc文件添加到服务中,因此我假设它必须是客户端调用WCFCommunicationListener时触发的其他类。

1 个答案:

答案 0 :(得分:6)

是的,它是在主服务类上以编程方式完成的。如果您遵循以下文档,应该相当简单:https://azure.microsoft.com/en-us/documentation/articles/service-fabric-reliable-services-communication-wcf/

基本上就是这样:

[ServiceContract]
interface IAdderWcfContract
{
    //
    // Adds the input to the value stored in the service and returns the result.
    //
    [OperationContract]
    Task<double> AddValue(double input);

    //
    // Resets the value stored in the service to zero.
    //
    [OperationContract]
    Task ResetValue();

    //
    // Reads the currently stored value.
    //
    [OperationContract]
    Task<double> ReadValue();
}

class MyService: StatefulService, IAdderWcfContract
{
    ...
    CreateServiceReplicaListeners()
    {
        return new[] { new ServiceReplicaListener((context) =>
            new WcfCommunicationListener<IAdderWcfContract>(
                wcfServiceObject:this,
                serviceContext:context,
                //
                // The name of the endpoint configured in the ServiceManifest under the Endpoints section
                // that identifies the endpoint that the WCF ServiceHost should listen on.
                //
                endpointResourceName: "WcfServiceEndpoint",

                //
                // Populate the binding information that you want the service to use.
                //
                listenerBinding: WcfUtility.CreateTcpListenerBinding()
            )
        )};
    } 

    // implement service methods
    ...
}