Click here to Skip to main content
15,885,985 members
Articles / Programming Languages / C#

Communication options with WCF - Part 1

Rate me:
Please Sign up or sign in to vote.
4.84/5 (93 votes)
11 Jul 2006CPOL15 min read 325.4K   1.8K   262  
Communication options with WCF - Part 1.
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Threading;

namespace AGVController
{
    [ServiceContract(Session=true)]
    public interface IAGVControl
    {
        [OperationContract(IsInitiating=true,IsTerminating=false)]
        int AcquireVehicle();
        [OperationContract(IsTerminating=true,IsInitiating=false)]
        void ReleaseVehicle();
        [OperationContract]
        void MoveTo(int location);
        [OperationContract]
        void Load();
        [OperationContract]
        void Unload();
    }
    [ServiceBehavior(InstanceContextMode=InstanceContextMode.PerSession)]
    public class AGVControl : IAGVControl
    {
        public int AcquireVehicle()
        {
            int vehicleID = 0;
            return vehicleID;
        }
        public void ReleaseVehicle()
        {
        }
        public void MoveTo(int location)
        {
            //This takes a long time...
            Thread.Sleep(5000);
        }
        public void Load()
        {
        }
        public void Unload()
        {
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions