csharp4405de34 | 1 | namespace CascadeIDE.Cockpit.DataBus; |
| 2 | |
| 3 | /// <summary> |
| 4 | /// Typed in-process event bus contract for IDE domain signals. |
| 5 | /// </summary> |
| 6 | public interface IDataBus |
| 7 | { |
| 8 | void Publish<TEvent>(TEvent evt); |
| 9 | |
| 10 | IDisposable Subscribe<TEvent>(Action<TEvent> handler); |
| 11 | } |
| 12 | |
View only · write via MCP/CIDE