// ----------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------- namespace Microsoft.Samples.Kinect.Webserver.Sensor { public interface ISensorStreamHandlerFactory { /// /// Creates a sensor stream handler object and associates it with a context that /// allows it to communicate with its owner. /// /// /// An instance of class. /// /// /// A new instance. /// ISensorStreamHandler CreateHandler(SensorStreamHandlerContext context); } }