From 0c1698cef8d7895a5fa7df3abbdd63f7ab088160 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 7 Apr 2022 15:26:04 +0200 Subject: [PATCH] docs: Add client API example. --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 4f3af31b7e..868ef01c50 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,18 @@ If you use the docker compose file from the previous step, here's the configurat If you use a different setup, your configuration details will most likely also be different. +### Check a feature toggle + +Checking the state of a feature toggle in your code is easy! The syntax will vary depending on your language, but all you need is a simple function call to check whether a toggle is available. Here's how it might look in Java: + +```java +if (unleash.isEnabled("AwesomeFeature")) { + // do new, flashy thing +} else { + // do old, boring stuff +} +``` + ## Community and help We know that learning a new tool can be hard and time-consuming. We have a growing community that loves to help out. Please don't hesitate about reaching out to get help.