Tutorial by Topics: rv

A Service runs in background to perform long-running operations or to perform work for remote processes. A service does not provide any user interface it runs only in background with User’s input. For example a service can play music in the background while the user is in a different App, or it migh...
The Executor interface in Java provides a way of decoupling task submission from the mechanics of how each task will be run, including details of thread use, scheduling, etc. An Executor is normally used instead of explicitly creating threads. With Executors, developers won't have to significantly r...
RecyclerView is a more advanced version of List View with improved performance and additional features. ParameterDetailAdapterA subclass of RecyclerView.Adapter responsible for providing views that represent items in a data setPositionThe position of a data item within an AdapterIndexThe index ...
This is a set of examples highlighting basic usage of SQL Server. VersionRelease DateSQL Server 20162016-06-01SQL Server 20142014-03-18SQL Server 20122011-10-11SQL Server 2008 R22010-04-01SQL Server 20082008-08-06SQL Server 20052005-11-01SQL Server 20002000-11-01
timeoutID = setTimeout(function() {}, milliseconds) intervalID = setInterval(function() {}, milliseconds) timeoutID = setTimeout(function() {}, milliseconds, parameter, parameter, ...) intervalID = setInterval(function() {}, milliseconds, parameter, parameter, ...) clearTimeout(timeoutID) cle...
RecyclerView addItemDecoration(RecyclerView.ItemDecoration decoration) RecyclerView addItemDecoration(RecyclerView.ItemDecoration decoration, int index) ParameterDetailsdecorationthe item decoration to add to the RecyclerViewindexthe index in the list of decorations for this RecyclerView. T...
notification name { email = [email protected], [email protected], ... post = http://example.com get = http://example.com next = another-notification-definition timeout = 30m runOnActions = false body = {"text": {{.|json}}} contentType = application/json print = true...
#See https://golang.org/pkg/text/template/ for Go Template Action and Function syntax expression = alert status {{.Last.Status}} and a variable {{.Eval .Alert.Vars.q | printf "%.2f"}} expression = `Use backticks to span multiple lines with line breaks in the Bosun config file` templ...
Scollector is a monitoring agent that can be used to send metrics to Bosun or any system that accepts OpenTSDB style metrics. It is modelled after OpenTSDB's tcollector data collection framework but is written in Go and compiled into a single binary. One of the design goals is to auto-detect servi...
Scollector can be used to monitor processes and services in Windows and Linux. Some processes like IIS application pools are monitored automatically, but usually you need to specify which processes and services you want to monitor.
http.ServeMux provides a multiplexer which calls handlers for HTTP requests. Alternatives to the standard library multiplexer include: Gorilla Mux
This section provides an overview of what amazon-web-services is, and why a developer might want to use it. It should also mention any large subjects within amazon-web-services, and link out to the related topics. Since the Documentation for amazon-web-services is new, you may need to create ini...
This section provides an overview of what Azure Service Bus is, and why a developer might want to use it. It should also mention any large subjects within Azure Service Bus, and link out to the related topics. Since the documentation for Azure Service Bus is new, you may need to create initial ve...
MySQL has some special names called reserved words. A reserved word can be used as an identifier for a table, column, etc. only if it's wrapped in backticks (`), otherwise it will give rise to an error. To avoid such errors, either don't use reserved words as identifiers or wrap the offending ident...

Page 1 of 10