コード例 #1
0
ファイル: Server.cs プロジェクト: chiepomme/SteamLoco
        public bool Send(List <int> connectionIDs, int channelID, ArraySegment <byte> segment)
        {
            var bytes = ByteArrayUtil.ToBytes(segment);

            foreach (var connectionID in connectionIDs)
            {
                var connection = connections[connectionID];
                connection.AddToSendQueue(channelID, bytes);
            }

            return(true);
        }
コード例 #2
0
ファイル: Connection.cs プロジェクト: chiepomme/SteamLoco
 public void AddToSendQueue(int channelID, ArraySegment <byte> segment)
 {
     AddToSendQueue(channelID, ByteArrayUtil.ToBytes(segment));
 }