Simple

langoustine.lsp.app.LangoustineApp.FromFuture.Simple
trait Simple extends FromFuture

Attributes

Source
LangoustineApp.scala
Graph
Supertypes
trait FromFuture
trait Config
trait IOApp
class Object
trait Matchable
class Any
Show all

Members list

Value members

Abstract methods

def server: Future[LSPBuilder[Future]]

Attributes

Source
LangoustineApp.scala

Concrete methods

def server(args: List[String]): Future[LSPBuilder[Future]]

Attributes

Source
LangoustineApp.scala

Inherited methods

def in: Stream[IO, Byte]

Attributes

Inherited from:
LangoustineAppPlatform (hidden)
Source
LangoustineAppPlatform.scala
def inBufferSize: Int

Attributes

Inherited from:
LangoustineAppPlatform (hidden)
Source
LangoustineAppPlatform.scala
def lspBufferSize: Int

Attributes

Inherited from:
Config
Source
LangoustineApp.scala
final def main(args: Array[String]): Unit

Attributes

Inherited from:
IOApp
Source
IOApp.scala
def out: (IO, Byte) => Nothing

Attributes

Inherited from:
Config
Source
LangoustineApp.scala
override def run(args: List[String]): IO[ExitCode]

The entry point for your application. Will be called by the runtime when the process is started. If the underlying runtime supports it, any arguments passed to the process will be made available in the args parameter. The numeric value within the resulting ExitCode will be used as the exit code when the process terminates unless terminated exceptionally or by interrupt.

The entry point for your application. Will be called by the runtime when the process is started. If the underlying runtime supports it, any arguments passed to the process will be made available in the args parameter. The numeric value within the resulting ExitCode will be used as the exit code when the process terminates unless terminated exceptionally or by interrupt.

Value parameters

args

The arguments passed to the process, if supported by the underlying runtime. For example, java com.company.MyApp --foo --bar baz or node com-mycompany-fastopt.js --foo --bar baz would each result in List("--foo", "--bar", "baz").

Attributes

See also

IOApp.Simple!.run:cats\.effect\.IO[Unit]*

Definition Classes
FromFuture -> IOApp
Inherited from:
FromFuture
Source
LangoustineApp.scala