 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package runtime handle the defenitions of the different runtimes.
Currently only python2.7 is supproted, but addition of more should affect this package while the rest of the code should not be aware of the differences
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Container ¶ added in v0.0.5
type Container interface {
	lambda.Invoker
	// Closes (stop) the container
	Close() error
	// A channel that is closed when the container exit
	Done() <-chan struct{}
	// Err is valid only after the container exit (the Done channel is closed)
	// And contain the exit error of the container
	Err() error
}
    Container is a specific runtime container
 Click to show internal directories. 
   Click to hide internal directories.