internal RioCompletionWorker(int workerId, IWorkerConfiguration configuration, ICompletionHandler completionHandler) { _workerId = workerId; _configuration = configuration; _completionHandler = completionHandler; SendingCompletionQueue = new RioCompletionQueue(configuration.CompletionQueueSize); }
public CodeCompletionKeyPressResult HandleKeyPress(ICompletionHandler completionHandler, char ch) { return CodeCompletionKeyPressResult.None; }
public CodeCompletionKeyPressResult HandleCtrlSpace(ICompletionHandler completionHandler) { return CodeCompletionKeyPressResult.None; }