source: other-projects/playing-in-the-street/summer-2013/trunk/Microsoft.Samples.Kinect.Webserver/Sensor/ISensorStreamHandlerFactory.cs@ 28896

Last change on this file since 28896 was 28896, checked in by davidb, 10 years ago

Core Web Server that connects to the Kinect device

File size: 955 bytes
Line 
1// -----------------------------------------------------------------------
2// <copyright file="ISensorStreamHandlerFactory.cs" company="Microsoft">
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// </copyright>
5// -----------------------------------------------------------------------
6
7namespace Microsoft.Samples.Kinect.Webserver.Sensor
8{
9 public interface ISensorStreamHandlerFactory
10 {
11 /// <summary>
12 /// Creates a sensor stream handler object and associates it with a context that
13 /// allows it to communicate with its owner.
14 /// </summary>
15 /// <param name="context">
16 /// An instance of <see cref="SensorStreamHandlerContext"/> class.
17 /// </param>
18 /// <returns>
19 /// A new <see cref="ISensorStreamHandler"/> instance.
20 /// </returns>
21 ISensorStreamHandler CreateHandler(SensorStreamHandlerContext context);
22 }
23}
Note: See TracBrowser for help on using the repository browser.