mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
35 lines
657 B
C#
35 lines
657 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
|
|
namespace Ben.Kernel.IPC
|
|
{
|
|
|
|
/// </summary>
|
|
public abstract class ReplyMessage : KernelMessage
|
|
{
|
|
private ushort replyToMessageId;
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// messages must be created by the kernel
|
|
/// </summary>
|
|
public ReplyMessage(ushort replyToMessageId )
|
|
: base()
|
|
{
|
|
this.replyToMessageId = replyToMessageId;
|
|
}
|
|
|
|
|
|
//static as
|
|
|
|
public uint ReplyToMessageId
|
|
{
|
|
get { return replyToMessageId; }
|
|
}
|
|
|
|
}
|
|
}
|