produceAsync
Asynchronous method for logging
/event/async
Usage and SDK Samples
curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"/gw/logger-producer-server/event/async"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.LogProducerAPIApi;
import java.io.File;
import java.util.*;
public class LogProducerAPIApiExample {
public static void main(String[] args) {
LogProducerAPIApi apiInstance = new LogProducerAPIApi();
HvlEventLogModel body = ; // HvlEventLogModel |
try {
HvlResponseVoid result = apiInstance.produceAsync(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogProducerAPIApi#produceAsync");
e.printStackTrace();
}
}
}
import io.swagger.client.api.LogProducerAPIApi;
public class LogProducerAPIApiExample {
public static void main(String[] args) {
LogProducerAPIApi apiInstance = new LogProducerAPIApi();
HvlEventLogModel body = ; // HvlEventLogModel |
try {
HvlResponseVoid result = apiInstance.produceAsync(body);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LogProducerAPIApi#produceAsync");
e.printStackTrace();
}
}
}
HvlEventLogModel *body = ; //
LogProducerAPIApi *apiInstance = [[LogProducerAPIApi alloc] init];
// Asynchronous method for logging
[apiInstance produceAsyncWith:body
completionHandler: ^(HvlResponseVoid output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var HvlLoggerProducerServer = require('hvl_logger_producer_server');
var api = new HvlLoggerProducerServer.LogProducerAPIApi()
var body = ; // {{HvlEventLogModel}}
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.produceAsync(body, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class produceAsyncExample
{
public void main()
{
var apiInstance = new LogProducerAPIApi();
var body = new HvlEventLogModel(); // HvlEventLogModel |
try
{
// Asynchronous method for logging
HvlResponseVoid result = apiInstance.produceAsync(body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling LogProducerAPIApi.produceAsync: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiLogProducerAPIApi();
$body = ; // HvlEventLogModel |
try {
$result = $api_instance->produceAsync($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LogProducerAPIApi->produceAsync: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::LogProducerAPIApi;
my $api_instance = WWW::SwaggerClient::LogProducerAPIApi->new();
my $body = WWW::SwaggerClient::Object::HvlEventLogModel->new(); # HvlEventLogModel |
eval {
my $result = $api_instance->produceAsync(body => $body);
print Dumper($result);
};
if ($@) {
warn "Exception when calling LogProducerAPIApi->produceAsync: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.LogProducerAPIApi()
body = # HvlEventLogModel |
try:
# Asynchronous method for logging
api_response = api_instance.produce_async(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling LogProducerAPIApi->produceAsync: %s\n" % e)
Parameters
Body parameters
Name | Description |
---|---|
body * |