Exemplo n.º 1
0
            public IReactiveQubject <I, O> Create(Uri streamUri, object state)
            {
                if (typeof(I) == typeof(O))
                {
                    var res = new NotSoSimpleUntypedSubject <I>(_parent, streamUri);
                    _parent.AddArtifact(streamUri, res);
                    return((IReactiveQubject <I, O>)res);
                }

                throw new NotImplementedException();
            }
Exemplo n.º 2
0
 public Subscription(NotSoSimpleUntypedSubject <TOutput> parent)
 {
     _parent = parent;
 }
Exemplo n.º 3
0
 public Impl(NotSoSimpleUntypedSubject <TOutput> parent)
 {
     _parent = parent;
 }