Register() public static méthode

public static Register ( IDispatcher dispatcher ) : void
dispatcher IDispatcher
Résultat void
Exemple #1
0
        public void InitialiseStreamController()
        {
            ((Configuration)UDAPI.Configuration).UseEchos = false;

            // register a mocked version of StreamController that doesn't
            // require any AMPQ server. It behaves exactly as StreamController,
            // except for the fact that doesn't establish a connection
            MockedStreamController.Register(new UpdateDispatcher());
        }
Exemple #2
0
 public void Initialise()
 {
     ((Configuration)UDAPI.Configuration).UseEchos = false;
     MockedStreamController.Register(new UpdateDispatcher());
 }