takipi-sdk-agent-shared

OverOps (Takipi) SDK internal agent shared interfaces

License

License

GroupId

GroupId

com.takipi
ArtifactId

ArtifactId

takipi-sdk-agent-shared
Last Version

Last Version

0.3.0
Release Date

Release Date

Type

Type

jar
Description

Description

takipi-sdk-agent-shared
OverOps (Takipi) SDK internal agent shared interfaces
Project URL

Project URL

http://www.overops.com

Download takipi-sdk-agent-shared

How to add to project

<!-- https://jarcasting.com/artifacts/com.takipi/takipi-sdk-agent-shared/ -->
<dependency>
    <groupId>com.takipi</groupId>
    <artifactId>takipi-sdk-agent-shared</artifactId>
    <version>0.3.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.takipi/takipi-sdk-agent-shared/
implementation 'com.takipi:takipi-sdk-agent-shared:0.3.0'
// https://jarcasting.com/artifacts/com.takipi/takipi-sdk-agent-shared/
implementation ("com.takipi:takipi-sdk-agent-shared:0.3.0")
'com.takipi:takipi-sdk-agent-shared:jar:0.3.0'
<dependency org="com.takipi" name="takipi-sdk-agent-shared" rev="0.3.0">
  <artifact name="takipi-sdk-agent-shared" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.takipi', module='takipi-sdk-agent-shared', version='0.3.0')
)
libraryDependencies += "com.takipi" % "takipi-sdk-agent-shared" % "0.3.0"
[com.takipi/takipi-sdk-agent-shared "0.3.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Takipi SDK

Deploying

To use, add the following repository to your maven pom.xml...

<repositories>
    <repository>
        <id>bintray-takipi-maven</id>
        <url>https://dl.bintray.com/takipi/maven</url>
    </repository>
</repositories>

Then, add the Takipi SDK dependency...

<dependency>
    <groupId>com.takipi</groupId>
    <artifactId>takipi-sdk</artifactId>
    <version>0.2.0</version>
</dependency>

Additional information can be found here https://bintray.com/takipi/maven/takipi-sdk

Integrating

The SDK can be used to create custom events inside your application. See the sample Java code below:

import com.takipi.sdk.v1.api.Takipi;
import com.takipi.sdk.v1.api.core.events.TakipiEvent;

public class CustomEventExample {

    private static final Takipi takipi = Takipi.create("CUSTOM_EVENT_EXAMPLE");

    public void doSomethingImportant() {

        TakipiEvent customEvent = takipi.events().createEvent("Important Custom Event");

        customEvent.fire();

    }
}

Building

To build:

  • mvn clean package
com.takipi

OverOps Open

Know When and Why Code Breaks in Production

Versions

Version
0.3.0