2008-03-05 09:52:00 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Microsoft Research Singularity
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// File: ServiceRequest.cs
|
|
|
|
//
|
|
|
|
// Note:
|
|
|
|
//
|
|
|
|
|
|
|
|
namespace Microsoft.Singularity
|
|
|
|
{
|
|
|
|
public abstract class ServiceRequest
|
|
|
|
{
|
|
|
|
internal ServiceRequest next = null;
|
|
|
|
protected internal abstract void Service();
|
|
|
|
}
|
2008-11-17 18:29:00 -05:00
|
|
|
}
|