예제 #1
0
 /// <summary>
 /// Missing copies notifications are sent from the server to the client to signal
 /// that some copies where missing during TypeCobol parsing.
 /// </summary>
 public virtual void SendMissingCopies(MissingCopiesParams parameters)
 {
     this.rpcServer.SendNotification(MissingCopiesNotification.Type, parameters);
 }
예제 #2
0
 /// <summary>
 /// The Missing copies notification is sent from the client to the server
 /// when the client failled to load copies, it send back a list of missing copies to the server.
 /// </summary>
 public virtual void OnDidReceiveMissingCopies(MissingCopiesParams parameter)
 {
     //Nothing to do for now, maybe add some telemetry here...
 }