Click here to Skip to main content
15,881,803 members

Comments by anisha_silva (Top 5 by date)

anisha_silva 14-Oct-12 22:21pm View    
ProcessSystem do some processing on the data
anisha_silva 10-Oct-12 11:16am View    
TrackManger.cs

class TrackManager:IComponent
{
public TrackManager()
{

}


}


Processor.cs

class Processor:IContainer
{
TrackManager tm;
private List<icomponent> c;

public Processor()
{
tm = new TrackManager();
c = new List<icomponent>();
}

#region IContainer Members

public void Add(IComponent component, string name)
{
throw new NotImplementedException();
}

public void Add(IComponent component)
{
c.Add(component);
//throw new NotImplementedException();
}

public ComponentCollection Components
{
get { throw new NotImplementedException(); }
}

public void Remove(IComponent component)
{
c.Remove(component);
//throw new NotImplementedException();
}

#endregion

#region IDisposable Members

public void Dispose()
{
Dispose();
//throw new NotImplementedException();
}

#endregion
}
anisha_silva 8-Oct-12 20:17pm View    
Deleted
could you help me with the question:

have a component proxy and another 2 components qclient and uclient, the proxy has to read from a file and sends data to either to the qclient of the uclient(depending on the data in the line),

what i did was read read the whole file in to a queue. the question is how do i send it to the other component?
anisha_silva 8-Oct-12 19:42pm View    
Deleted
have a component proxy and another 2 components qclient and uclient, the proxy has to read from a file and sends data to either to the qclient of the uclient(depending on the data in the line),

what i did was read read the whole file in to a queue. the question is how do i send it to the other component?

appreciate a reply thanks
anisha_silva 8-Oct-12 19:39pm View    
what