• Stars
    star
    235
  • Rank 164,993 (Top 4 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created about 7 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An annotation-based Java library for creating Thrift serializable types and services.

Drift

Maven Central Build Status

Drift is an easy-to-use, annotation-based Java library for creating Thrift clients and serializable types. The client library is similar to JAX-RS (HTTP Rest) and the serialization library is similar to JaxB (XML) and Jackson (JSON), but for Thrift.

Example

The following interface defines a client for a Scribe server:

@ThriftService
public interface Scribe
{
    @ThriftMethod
    ResultCode log(List<LogEntry> messages);
}

The log method above uses the LogEntry Thrift struct which is defined as follows:

@ThriftStruct
public class LogEntry
{
    private final String category;
    private final String message;

    @ThriftConstructor
    public LogEntry(String category, String message)
    {
        this.category = category;
        this.message = message;
    }

    @ThriftField(1)
    public String getCategory()
    {
        return category;
    }

    @ThriftField(2)
    public String getMessage()
    {
        return message;
    }
}

An instance of the Scribe client can be created using a DriftClientFactory:

// create a client
Scribe scribe = clientFactory.createDriftClient(Scribe.class);

// use client
scribe.log(Arrays.asList(new LogEntry("category", "message")));

Detailed Documentation

More Repositories

1

airline

Java annotation-based framework for parsing Git like command line structures
Java
848
star
2

airlift

Airlift framework for building REST services
Java
564
star
3

aircompressor

A port of Snappy, LZO, LZ4, and Zstandard to Java
Java
530
star
4

slice

Java library for efficiently working with heap and off-heap memory
Java
498
star
5

jvmkill

Terminate the JVM when resources are exhausted
C
176
star
6

procname

Set process name for Java on Linux
C
96
star
7

codestyle

Code style for Airlift projects
66
star
8

bytecode

High-level Java library for generating JVM bytecode
Java
61
star
9

discovery

Discovery Server
Java
53
star
10

airbase

Base POM for Airlift
47
star
11

airship

Airship is a software deployment and management tool
Java
32
star
12

command

Convenience library for executing external processes
Java
18
star
13

stackfold

Fold related stacks in Java thread dumps
Java
13
star
14

units

Java library for immutable human-friendly units
Java
12
star
15

testing-postgresql-server

Embedded PostgreSQL server for use in tests
Java
9
star
16

testing-mysql-server

Embedded MySQL server for use in tests
Java
7
star
17

astack

Capture JVM thread dumps without requiring safepoints
C++
6
star
18

parameternames

Utility methods for fetching Java method or constructor parameter names
Java
6
star
19

floatingdecimal

Fix monitor contention issues in OpenJDK's FloatingDecimal
Java
5
star
20

resolver

Resolve the dependencies of Maven coordinates or POM file
Java
5
star
21

airlift-rack

Airlift Rack
Ruby
3
star
22

gcwatch

Monitor the JVM for stop-the-world GC pauses
C++
3
star
23

junit-extensions

Extensions for JUnit 5
Java
1
star
24

joda-to-java-time-bridge

Java
1
star