2022-12-07 05:48:16 +00:00
<!DOCTYPE html>
< html >
< head >
< meta name = "viewport" content = "width=device-width, initial-scale=1" charset = "UTF-8" >
2023-06-09 06:16:05 +00:00
< title > registerPlugin< / title >
2022-12-07 05:48:16 +00:00
< link href = "../../../images/logo-icon.svg" rel = "icon" type = "image/svg" >
< script > var pathToRoot = "../../../" ; < / script >
< script > c o n s t s t o r a g e = l o c a l S t o r a g e . g e t I t e m ( " d o k k a - d a r k - m o d e " )
if (storage == null) {
const osDarkSchemePreferred = window.matchMedia & & window.matchMedia('(prefers-color-scheme: dark)').matches
if (osDarkSchemePreferred === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
} else {
const savedDarkMode = JSON.parse(storage)
if(savedDarkMode === true) {
document.getElementsByTagName("html")[0].classList.add("theme-dark")
}
}
< / script >
< script type = "text/javascript" src = "../../../scripts/sourceset_dependencies.js" async = "async" > < / script >
< link href = "../../../styles/style.css" rel = "Stylesheet" >
< link href = "../../../styles/jetbrains-mono.css" rel = "Stylesheet" >
< link href = "../../../styles/main.css" rel = "Stylesheet" >
< link href = "../../../styles/prism.css" rel = "Stylesheet" >
< link href = "../../../styles/logo-styles.css" rel = "Stylesheet" >
< script type = "text/javascript" src = "../../../scripts/clipboard.js" async = "async" > < / script >
< script type = "text/javascript" src = "../../../scripts/navigation-loader.js" async = "async" > < / script >
< script type = "text/javascript" src = "../../../scripts/platform-content-handler.js" async = "async" > < / script >
< script type = "text/javascript" src = "../../../scripts/main.js" defer = "defer" > < / script >
< script type = "text/javascript" src = "../../../scripts/prism.js" async = "async" > < / script >
< script type = "text/javascript" src = "../../../scripts/symbol-parameters-wrapper_deferred.js" defer = "defer" > < / script >
< / head >
< body >
< div class = "navigation-wrapper" id = "navigation-wrapper" >
< div id = "leftToggler" > < span class = "icon-toggler" > < / span > < / div >
< div class = "library-name" >
< a href = "../../../index.html" >
< span > micro_utils.dokka< / span >
< / a >
< / div >
< div >
2023-07-29 11:51:45 +00:00
0.19.9 < / div >
2022-12-07 05:48:16 +00:00
< div class = "pull-right d-flex" >
< div class = "filter-section" id = "filter-section" >
2023-06-09 06:16:05 +00:00
< button class = "platform-tag platform-selector js-like" data-active = "" data-filter = ":micro_utils.dokka:dokkaHtml/jsMain" > js< / button >
2022-12-07 05:48:16 +00:00
< / div >
< button id = "theme-toggle-button" > < span id = "theme-toggle" > < / span > < / button >
< div id = "searchBar" > < / div >
< / div >
< / div >
< div id = "container" >
< div id = "leftColumn" >
< div id = "sideMenu" > < / div >
< / div >
< div id = "main" >
2023-06-09 06:16:05 +00:00
< div class = "main-content" data-page-type = "member" id = "content" pageIds = "micro_utils.dokka::dev.inmo.micro_utils.startup.plugin/StartPluginSerializer/registerPlugin/#kotlin.String#dev.inmo.micro_utils.startup.plugin.StartPlugin/PointingToDeclaration//-119510368" >
< div class = "breadcrumbs" > < a href = "../../../index.html" > micro_utils.dokka< / a > < span class = "delimiter" > /< / span > < a href = "../index.html" > dev.inmo.micro_utils.startup.plugin< / a > < span class = "delimiter" > /< / span > < a href = "index.html" > StartPluginSerializer< / a > < span class = "delimiter" > /< / span > < span class = "current" > registerPlugin< / span > < / div >
2022-12-07 05:48:16 +00:00
< div class = "cover " >
2023-06-09 06:16:05 +00:00
< h1 class = "cover" > < span > register< / span > < wbr > < / wbr > < span > < span > Plugin< / span > < / span > < / h1 >
2022-12-07 05:48:16 +00:00
< / div >
< div class = "platform-hinted with-platform-tabs" data-platform-hinted = "data-platform-hinted" >
2023-06-09 06:16:05 +00:00
< div class = "platform-bookmarks-row" data-toggle-list = "data-toggle-list" > < button class = "platform-bookmark" data-filterable-current = ":micro_utils.dokka:dokkaHtml/jsMain" data-filterable-set = ":micro_utils.dokka:dokkaHtml/jsMain" data-active = "" data-toggle = ":micro_utils.dokka:dokkaHtml/jsMain" > js< / button > < / div >
< div class = "content sourceset-dependent-content" data-active = "" data-togglable = ":micro_utils.dokka:dokkaHtml/jsMain" > < div class = "symbol monospace" > < span class = "token keyword" > < / span > < span class = "token keyword" > fun < / span > < a href = "register-plugin.html" > < span class = "token function" > registerPlugin< / span > < / a > < span class = "token punctuation" > (< / span > < span class = "parameters " > < span class = "parameter " > name< span class = "token operator" > : < / span > < a href = "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html" > String< / a > < span class = "token punctuation" > , < / span > < / span > < span class = "parameter " > plugin< span class = "token operator" > : < / span > < a href = "../-start-plugin/index.html" > StartPlugin< / a > < / span > < / span > < span class = "token punctuation" > )< / span > < / div > < p class = "paragraph" > Register plugin inside of this < span data-unresolved-link = "kotlinx.serialization/KSerializer///PointingToDeclaration/" > KSerializer< / span > . Since plugin has been registered, you may use its < a href = "register-plugin.html" > name< / a > in any serialized < a href = "../../dev.inmo.micro_utils.startup.launcher/-config/index.html" > dev.inmo.micro_utils.startup.launcher.Config< / a > to retrieve < a href = "register-plugin.html" > plugin< / a > you passed here< / p > < / div > < / div >
2022-12-07 05:48:16 +00:00
< / div >
< div class = "footer" >
2023-01-04 14:31:55 +00:00
< span class = "go-to-top-icon" > < a href = "#content" id = "go-to-top-link" > < / a > < / span > < span > © 2023 Copyright< / span > < span
2022-12-07 05:48:16 +00:00
class="pull-right">< span > Generated by < / span > < a
href="https://github.com/Kotlin/dokka">< span > dokka< / span > < span class = "padded-icon" > < / span > < / a > < / span >
< / div >
< / div >
< / div >
< / body >
< / html >