コード例 #1
0
        public override async Task Process(Controller controller)
        {
            var transaction = controller.TransactionManagager.FindTransaction(data.txId);

            IResultCursor cursor = await transaction.RunAsync(data.cypher, data.parameters).ConfigureAwait(false);

            var result = new Result()
            {
                Results = cursor
            };

            ObjManager.AddProtocolObject(result);
            ResultId = result.uniqueId;
        }
コード例 #2
0
        public override async Task Process()
        {
            try
            {
                var transaction = ((SessionReadTransaction)ObjManager.GetObject(data.txId)).Transaction;

                IResultCursor cursor = await transaction.RunAsync(data.cypher, data.parameters);

                var result = new Result()
                {
                    Results = cursor
                };
                ObjManager.AddProtocolObject(result);
                ResultId = result.uniqueId;
            }
            catch (Exception ex)
            {
                throw new Exception($"Failed to Process TransactionRun protocol object, failed with - {ex.Message}");
            }
        }
コード例 #3
0
        public override async Task Process()
        {
            try
            {
                var newSession = (NewSession)ObjManager.GetObject(data.sessionId);

                IResultCursor cursor = await newSession.Session.RunAsync(data.cypher, data.parameters).ConfigureAwait(false);

                var result = new Result()
                {
                    Results = cursor
                };
                ObjManager.AddProtocolObject(result);
                ResultId = result.uniqueId;
            }
            catch (Exception ex)
            {
                throw new Exception($"Failed to Process SessionRun protocol object, failed with - {ex.Message}");
            }
        }