Brod.Consumers.StreamState.StreamState C# (CSharp) Метод

StreamState() публичный Метод

public StreamState ( string topic, string @group, Int32>.Dictionary offsetByPartition ) : System
topic string
@group string
offsetByPartition Int32>.Dictionary
Результат System
        public StreamState(string topic, string @group, Dictionary<Int32, Int32> offsetByPartition)
        {
            Topic = topic;
            Group = @group;
            OffsetByPartition = offsetByPartition;
        }
StreamState