Ejemplo n.º 1
0
        public override Task <Capabilities> GetCapabilities(global::Qlik.Sse.Empty request, ServerCallContext context)
        {
            try
            {
                logger.Info($"GetCapabilities called from client ({context.Peer})");

                return(Task.FromResult(capabilities));
            }
            catch (Exception ex)
            {
                logger.Error($"GetCapabilities failed: {ex.Message}");
                return(null);
            }
        }
Ejemplo n.º 2
0
        public override Task <Capabilities> GetCapabilities(global::Qlik.Sse.Empty request, ServerCallContext context)
        {
            try
            {
                var identifier = $"Qlik SSEtoRserve plugin";
                var version    = $"v1.0.0";
                logger.Info($"GetCapabilities called, returned ({identifier}), version ({version})");

                return(Task.FromResult(new Capabilities
                {
                    AllowScript = true,
                    PluginIdentifier = identifier,
                    PluginVersion = version
                }));
            }
            catch (Exception ex)
            {
                logger.Error($"GetCapabilities failed: {ex.Message}");
                return(null);
            }
        }
Ejemplo n.º 3
0
 /// <summary>
 //// A handshake call for the Qlik engine to retrieve the capability of the plugin.
 /// </summary>
 /// <param name="request">The request received from the client.</param>
 /// <param name="context">The context of the server-side call handler being invoked.</param>
 /// <returns>The response to send back to the client (wrapped by a task).</returns>
 public virtual global::System.Threading.Tasks.Task <global::Qlik.Sse.Capabilities> GetCapabilities(global::Qlik.Sse.Empty request, grpc::ServerCallContext context)
 {
     throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
 }
Ejemplo n.º 4
0
 /// <summary>
 //// A handshake call for the Qlik engine to retrieve the capability of the plugin.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="options">The options for the call.</param>
 /// <returns>The call object.</returns>
 public virtual grpc::AsyncUnaryCall <global::Qlik.Sse.Capabilities> GetCapabilitiesAsync(global::Qlik.Sse.Empty request, grpc::CallOptions options)
 {
     return(CallInvoker.AsyncUnaryCall(__Method_GetCapabilities, null, options, request));
 }
Ejemplo n.º 5
0
 /// <summary>
 //// A handshake call for the Qlik engine to retrieve the capability of the plugin.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
 /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
 /// <param name="cancellationToken">An optional token for canceling the call.</param>
 /// <returns>The call object.</returns>
 public virtual grpc::AsyncUnaryCall <global::Qlik.Sse.Capabilities> GetCapabilitiesAsync(global::Qlik.Sse.Empty request, grpc::Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(GetCapabilitiesAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }
Ejemplo n.º 6
0
 /// <summary>
 //// A handshake call for the Qlik engine to retrieve the capability of the plugin.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="options">The options for the call.</param>
 /// <returns>The response received from the server.</returns>
 public virtual global::Qlik.Sse.Capabilities GetCapabilities(global::Qlik.Sse.Empty request, grpc::CallOptions options)
 {
     return(CallInvoker.BlockingUnaryCall(__Method_GetCapabilities, null, options, request));
 }
Ejemplo n.º 7
0
 /// <summary>
 //// A handshake call for the Qlik engine to retrieve the capability of the plugin.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
 /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
 /// <param name="cancellationToken">An optional token for canceling the call.</param>
 /// <returns>The response received from the server.</returns>
 public virtual global::Qlik.Sse.Capabilities GetCapabilities(global::Qlik.Sse.Empty request, grpc::Metadata headers = null, global::System.DateTime?deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
 {
     return(GetCapabilities(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }