All Projects → splitio → java-client

splitio / java-client

Licence: other
Java SDK client for Split Software

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to java-client

ruby-client
Ruby SDK client for Split Software
Stars: ✭ 22 (+10%)
Mutual labels:  feature-flags, feature-toggles, ab-testing, splitsoftware
react-client
React JS SDK client for Split Software
Stars: ✭ 23 (+15%)
Mutual labels:  feature-flags, feature-toggles, ab-testing, splitsoftware
php-client
PHP SDK client for Split Software
Stars: ✭ 14 (-30%)
Mutual labels:  feature-flags, feature-toggles, ab-testing, splitsoftware
python-client
Python SDK client for Split Software
Stars: ✭ 12 (-40%)
Mutual labels:  feature-flags, feature-toggles, ab-testing, splitsoftware
Flagr
Flagr is a feature flagging, A/B testing and dynamic configuration microservice
Stars: ✭ 1,776 (+8780%)
Mutual labels:  feature-flags, feature-toggles, ab-testing
Tweek
Tweek - an open source feature manager
Stars: ✭ 268 (+1240%)
Mutual labels:  feature-flags, feature-toggles, ab-testing
Molasses
Feature toggle library for elixir
Stars: ✭ 70 (+250%)
Mutual labels:  feature-flags, feature-toggles
Featureflags
The guide to decoupling feature rollout from code deployment for feature flag-driven development. Feature flags give a software organization the power to reduce risk, iterate quicker, and get more control.
Stars: ✭ 231 (+1055%)
Mutual labels:  feature-flags, feature-toggles
Flagception Bundle
Feature flags on steroids!
Stars: ✭ 162 (+710%)
Mutual labels:  feature-flags, feature-toggles
Unleash Client Node
Unleash client SDK for Node.js
Stars: ✭ 137 (+585%)
Mutual labels:  feature-flags, feature-toggles
Feature Flags
Feature flags API written in Go
Stars: ✭ 375 (+1775%)
Mutual labels:  feature-flags, feature-toggles
Featuretoggle
Simple, reliable feature toggles in .NET
Stars: ✭ 641 (+3105%)
Mutual labels:  feature-flags, feature-toggles
Piranha
A tool for refactoring code related to feature flag APIs
Stars: ✭ 1,840 (+9100%)
Mutual labels:  feature-flags, feature-toggles
Unleash Client Go
Unleash Client for Go
Stars: ✭ 78 (+290%)
Mutual labels:  feature-flags, feature-toggles
Flipflop
Flipflop lets you declare and manage feature flags in your Rails application.
Stars: ✭ 165 (+725%)
Mutual labels:  feature-flags, feature-toggles
Flipper
Flipper is a simple and useful tool to deal with feature toggles
Stars: ✭ 64 (+220%)
Mutual labels:  feature-flags, feature-toggles
Fun with flags
Feature Flags/Toggles for Elixir
Stars: ✭ 554 (+2670%)
Mutual labels:  feature-flags, feature-toggles
Unleash Client Python
Unleash client for Python 💡💡💡
Stars: ✭ 44 (+120%)
Mutual labels:  feature-flags, feature-toggles
Flipper
🐬 Beautiful, performant feature flags for Ruby.
Stars: ✭ 2,732 (+13560%)
Mutual labels:  feature-flags, feature-toggles
Flipt
An open-source, on-prem feature flag solution
Stars: ✭ 1,623 (+8015%)
Mutual labels:  feature-flags, feature-toggles

Split Java SDK

Build Status

Overview

This SDK is designed to work with Split, the platform for controlled rollouts, serving features to your users via the Split feature flag to manage your complete customer experience.

Twitter Follow

Compatibility

This SDK is compatible with Java 8 and higher.

Getting started

Below is a simple example that describes the instantiation and most basic usage of our SDK:

import io.split.client.SplitFactoryBuilder;
import io.split.client.SplitClient;

public  class App {

    public static void main() {
        SplitClientConfig config = SplitClientConfig.builder()
                .setBlockUntilReadyTimeout(10000)
                .build();
        SplitFactory splitFactory = SplitFactoryBuilder.build("SDK_API_KEY", config);
        SplitClient client = splitFactory.client();
        try {
            client.blockUntilReady();
        } catch (TimeoutException | InterruptedException e) {
            // log & handle 
        }

        String treatment = client.getTreatment("CUSTOMER_ID", "SPLIT_NAME");
        if (treatment.equals("on")) {
            // Feature is enabled for this user!
        } else if (treatment.equals("off")) {
            // Feature is disabled for this user!
        } else {
            // Unable to perform evaluation.
        }
    }
}

Submitting issues

The Split team monitors all issues submitted to this issue tracker. We encourage you to use this issue tracker to submit any bug reports, feedback, and feature enhancements. We'll do our best to respond in a timely manner.

Contributing

Please see Contributors Guide to find all you need to submit a Pull Request (PR).

License

Licensed under the Apache License, Version 2.0. See: Apache License.

About Split

Split is the leading Feature Delivery Platform for engineering teams that want to confidently deploy features as fast as they can develop them. Split’s fine-grained management, real-time monitoring, and data-driven experimentation ensure that new features will improve the customer experience without breaking or degrading performance. Companies like Twilio, Salesforce, GoDaddy and WePay trust Split to power their feature delivery.

To learn more about Split, contact [email protected], or get started with feature flags for free at https://www.split.io/signup.

Split has built and maintains SDKs for:

For a comprehensive list of open source projects visit our Github page.

Learn more about Split:

Visit split.io/product for an overview of Split, or visit our documentation at help.split.io for more detailed information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].