Beispiel #1
0
        private void _AddIntentToChannelStateBuilder(Guid channelId, IIntentNode intentNode, TimeSpan intentRelativeTime)
        {
            IIntentState intentState = intentNode.CreateIntentState(intentRelativeTime);

            _channelStateBuilder.AddChannelState(channelId, intentState);
        }
Beispiel #2
0
        private void _AddIntentToElementStateBuilder(Guid elementId, IIntentNode intentNode, TimeSpan intentRelativeTime)
        {
            IIntentState intentState = intentNode.CreateIntentState(intentRelativeTime);

            _elementStateBuilder.AddElementState(elementId, intentState);
        }