2021-10-14 20:30:40 +02:00
### YamlMime:ManagedReference
items :
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler
commentId : T:TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
id : MultiActionHandler
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers
2021-10-14 20:30:40 +02:00
children :
2022-11-12 13:53:28 +01:00
- TinyLife.Actions.Handlers.MultiActionHandler.#ctor(TinyLife.Actions.Action)
2022-01-01 17:06:03 +01:00
- TinyLife.Actions.Handlers.MultiActionHandler.Actions
2023-03-30 18:07:55 +02:00
- TinyLife.Actions.Handlers.MultiActionHandler.Current
- TinyLife.Actions.Handlers.MultiActionHandler.Initialize(System.Collections.Generic.ICollection{TinyLife.Actions.Action})
2022-01-01 17:06:03 +01:00
- TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
- TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2022-09-05 14:19:42 +02:00
- TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-11-12 13:53:28 +01:00
- TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
name : MultiActionHandler
nameWithType : MultiActionHandler
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
type : Class
source :
remote :
2022-01-01 17:06:03 +01:00
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : MultiActionHandler
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 14
2021-10-14 20:30:40 +02:00
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2022-11-12 13:53:28 +01:00
summary : "\nA multi action handler is a handler that is used by <xref href=\"TinyLife.Actions.MultiAction\" data-throw-if-not-resolved=\"false\"></xref>, which handles a set of underlying actions that should be executed in a row.\nNote that, when using this class, <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref>, <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action%2cTinyLife.Objects.Person)\" data-throw-if-not-resolved=\"false\"></xref> and especially <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)\" data-throw-if-not-resolved=\"false\"></xref> have to be called in the appropriate places.\n"
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
public class MultiActionHandler
content.vb : >-
<DataContract>
Public Class MultiActionHandler
inheritance :
- System.Object
inheritedMembers :
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods :
2022-01-01 17:06:03 +01:00
- TinyLife.Actions.Handlers.MultiActionHandler.TinyLife.Utilities.Extensions.JsonCopy``1
2021-10-14 20:30:40 +02:00
attributes :
- type : System.Runtime.Serialization.DataContractAttribute
ctor : System.Runtime.Serialization.DataContractAttribute.#ctor
arguments : [ ]
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Actions
commentId : P:TinyLife.Actions.Handlers.MultiActionHandler.Actions
2021-10-14 20:30:40 +02:00
id : Actions
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
name : Actions
nameWithType : MultiActionHandler.Actions
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Actions
2021-10-14 20:30:40 +02:00
type : Property
source :
remote :
2022-01-01 17:06:03 +01:00
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : Actions
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 21
2021-10-14 20:30:40 +02:00
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2021-10-14 20:30:40 +02:00
summary : "\nThe actions that still have to be completed.\nThe head of this queue is the action that is currently being executed.\n"
example : [ ]
syntax :
content : >-
[ DataMember]
2022-11-12 13:53:28 +01:00
public Queue<Action> Actions { get; }
2021-10-14 20:30:40 +02:00
parameters : [ ]
return :
2022-11-12 13:53:28 +01:00
type : System.Collections.Generic.Queue{TinyLife.Actions.Action}
2021-10-14 20:30:40 +02:00
content.vb : >-
<DataMember>
2023-03-30 18:07:55 +02:00
Public Property Actions As Queue(Of Action)
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.MultiActionHandler.Actions*
2021-10-14 20:30:40 +02:00
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Current
commentId : P:TinyLife.Actions.Handlers.MultiActionHandler.Current
id : Current
parent : TinyLife.Actions.Handlers.MultiActionHandler
langs :
- csharp
- vb
name : Current
nameWithType : MultiActionHandler.Current
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Current
type : Property
source :
remote :
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
branch : main
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : Current
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
startLine : 23
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Handlers
syntax :
content : public Action Current { get; }
parameters : [ ]
return :
type : TinyLife.Actions.Action
content.vb : Public ReadOnly Property Current As Action
overload : TinyLife.Actions.Handlers.MultiActionHandler.Current*
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.#ctor(TinyLife.Actions.Action)
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.#ctor(TinyLife.Actions.Action)
id : '#ctor(TinyLife.Actions.Action)'
2022-05-24 13:36:05 +02:00
parent : TinyLife.Actions.Handlers.MultiActionHandler
langs :
- csharp
- vb
2022-11-12 13:53:28 +01:00
name : MultiActionHandler(Action)
nameWithType : MultiActionHandler.MultiActionHandler(Action)
fullName : TinyLife.Actions.Handlers.MultiActionHandler.MultiActionHandler(TinyLife.Actions.Action)
2022-05-24 13:36:05 +02:00
type : Constructor
source :
remote :
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2022-05-24 13:36:05 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : .ctor
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 31
2022-05-24 13:36:05 +02:00
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Handlers
summary : "\nCreates a new <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler\" data-throw-if-not-resolved=\"false\"></xref> with the given containing action.\n"
example : [ ]
syntax :
2022-11-12 13:53:28 +01:00
content : public MultiActionHandler(Action containingAction)
2022-05-24 13:36:05 +02:00
parameters :
- id : containingAction
2022-11-12 13:53:28 +01:00
type : TinyLife.Actions.Action
2022-05-24 13:36:05 +02:00
description : The action that contains this <xref href="TinyLife.Actions.Handlers.MultiActionHandler" data-throw-if-not-resolved="false"></xref>.
2022-11-12 13:53:28 +01:00
content.vb : Public Sub New(containingAction As Action)
2022-05-24 13:36:05 +02:00
overload : TinyLife.Actions.Handlers.MultiActionHandler.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : MultiActionHandler.New(Action)
fullName.vb : TinyLife.Actions.Handlers.MultiActionHandler.New(TinyLife.Actions.Action)
name.vb : New(Action)
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Initialize(System.Collections.Generic.ICollection{TinyLife.Actions.Action})
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.Initialize(System.Collections.Generic.ICollection{TinyLife.Actions.Action})
id : Initialize(System.Collections.Generic.ICollection{TinyLife.Actions.Action})
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Initialize(ICollection<Action>)
nameWithType : MultiActionHandler.Initialize(ICollection<Action>)
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Initialize(System.Collections.Generic.ICollection<TinyLife.Actions.Action>)
2021-10-14 20:30:40 +02:00
type : Method
source :
remote :
2022-01-01 17:06:03 +01:00
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : Initialize
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 43
2021-10-14 20:30:40 +02:00
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2023-03-30 18:07:55 +02:00
summary : "\nInitializes this multi action handler with the given set of actions.\nIf <code data-dev-comment-type=\"paramref\" class=\"paramref\">actions</code> is empty, the initialization fails and <xref href=\"TinyLife.Actions.CompletionType.Failed\" data-throw-if-not-resolved=\"false\"></xref> is returned in <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted\" data-throw-if-not-resolved=\"false\"></xref>.\nIf the collection only contains <a href=\"https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null\">null</a> items, no first actions will be executed and <xref href=\"TinyLife.Actions.CompletionType.Completed\" data-throw-if-not-resolved=\"false\"></xref> is returned in <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content : public CompletionType Initialize(ICollection<Action> actions)
2021-10-14 20:30:40 +02:00
parameters :
- id : actions
2023-03-30 18:07:55 +02:00
type : System.Collections.Generic.ICollection{TinyLife.Actions.Action}
2021-10-14 20:30:40 +02:00
description : The actions to initialize
2022-01-01 17:06:03 +01:00
return :
type : TinyLife.Actions.CompletionType
description : The completion type that this multi action handler has after initialization
2023-03-30 18:07:55 +02:00
content.vb : Public Function Initialize(actions As ICollection(Of Action)) As CompletionType
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.MultiActionHandler.Initialize*
2023-03-30 18:07:55 +02:00
nameWithType.vb : MultiActionHandler.Initialize(ICollection(Of Action))
fullName.vb : TinyLife.Actions.Handlers.MultiActionHandler.Initialize(System.Collections.Generic.ICollection(Of TinyLife.Actions.Action))
name.vb : Initialize(ICollection(Of Action))
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id : Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Update(GameTime, TimeSpan, float)
nameWithType : MultiActionHandler.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
2021-10-14 20:30:40 +02:00
type : Method
source :
remote :
2022-01-01 17:06:03 +01:00
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : Update
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 75
2021-10-14 20:30:40 +02:00
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2022-09-05 14:19:42 +02:00
summary : "\nUpdates this multi action handler, advancing all of the <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Actions\" data-throw-if-not-resolved=\"false\"></xref>, if there are any\nThis action should be called at the end of <xref href=\"TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref> or any derived methods.\n"
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2022-01-01 17:06:03 +01:00
content : public CompletionType Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
2021-10-14 20:30:40 +02:00
parameters :
- id : time
2022-09-05 14:19:42 +02:00
type : Microsoft.Xna.Framework.GameTime
2021-10-14 20:30:40 +02:00
description : The game time
- id : passedInGame
type : System.TimeSpan
description : The amount of time that has passed in game since the last time this method was called
2021-11-26 23:42:22 +01:00
- id : speedMultiplier
type : System.Single
description : The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
2022-01-01 17:06:03 +01:00
return :
type : TinyLife.Actions.CompletionType
description : The completion type that this multi action handler has after this update
content.vb : Public Function Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single) As CompletionType
overload : TinyLife.Actions.Handlers.MultiActionHandler.Update*
2023-03-30 18:07:55 +02:00
nameWithType.vb : MultiActionHandler.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
id : Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
2022-11-12 13:53:28 +01:00
name : Validate(Action, Person)
nameWithType : MultiActionHandler.Validate(Action, Person)
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action, TinyLife.Objects.Person)
2021-10-14 20:30:40 +02:00
type : Method
source :
remote :
2022-01-01 17:06:03 +01:00
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : Validate
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 91
2021-10-14 20:30:40 +02:00
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
summary : "\nValidates this multi action handler and all of the <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Actions\" data-throw-if-not-resolved=\"false\"></xref> it hosts\nThis method should be called in <xref href=\"TinyLife.Actions.Action.Validate(TinyLife.Objects.Person)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2022-11-12 13:53:28 +01:00
content : public bool Validate(Action containingAction, Person person)
2021-10-14 20:30:40 +02:00
parameters :
2022-05-24 13:36:05 +02:00
- id : containingAction
2022-11-12 13:53:28 +01:00
type : TinyLife.Actions.Action
2022-05-24 13:36:05 +02:00
description : The action that contains this multi action handler.
2021-10-14 20:30:40 +02:00
- id : person
type : TinyLife.Objects.Person
2022-11-12 13:53:28 +01:00
description : The person that is passed to the <code data-dev-comment-type="paramref" class="paramref">containingAction</code>'s <xref href="TinyLife.Actions.Action.Validate(TinyLife.Objects.Person)" data-throw-if-not-resolved="false"></xref> method.
2021-10-14 20:30:40 +02:00
return :
type : System.Boolean
2022-05-24 13:36:05 +02:00
description : Whether this multi action handler is still valid.
2022-11-12 13:53:28 +01:00
content.vb : Public Function Validate(containingAction As Action, person As Person) As Boolean
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.MultiActionHandler.Validate*
- uid : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
2021-10-14 20:30:40 +02:00
id : IsCompleted
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
name : IsCompleted()
nameWithType : MultiActionHandler.IsCompleted()
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted()
2021-10-14 20:30:40 +02:00
type : Method
source :
remote :
2022-01-01 17:06:03 +01:00
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : IsCompleted
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 113
2021-10-14 20:30:40 +02:00
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
2022-11-12 13:53:28 +01:00
summary : "\nReturns a <xref href=\"TinyLife.Actions.CompletionType\" data-throw-if-not-resolved=\"false\"></xref> that determines whether this multi action handler has completed.\nIf <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Actions\" data-throw-if-not-resolved=\"false\"></xref> is not (yet) initialized, <xref href=\"TinyLife.Actions.CompletionType.Failed\" data-throw-if-not-resolved=\"false\"></xref> is returned. Otherwise, the current action's <xref href=\"TinyLife.Actions.Action.IsCompleted\" data-throw-if-not-resolved=\"false\"></xref> result is returned.\nIf all <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Actions\" data-throw-if-not-resolved=\"false\"></xref> are completed, <xref href=\"TinyLife.Actions.CompletionType.Completed\" data-throw-if-not-resolved=\"false\"></xref> is returned.\n"
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public CompletionType IsCompleted()
return :
type : TinyLife.Actions.CompletionType
description : This multi action handler's completion state
2023-03-30 18:07:55 +02:00
content.vb : Public Function IsCompleted() As CompletionType
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted*
- uid : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2021-10-14 20:30:40 +02:00
id : OnCompleted(TinyLife.Actions.CompletionType)
2022-01-01 17:06:03 +01:00
parent : TinyLife.Actions.Handlers.MultiActionHandler
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
name : OnCompleted(CompletionType)
nameWithType : MultiActionHandler.OnCompleted(CompletionType)
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2021-10-14 20:30:40 +02:00
type : Method
source :
remote :
2022-01-01 17:06:03 +01:00
path : TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
branch : main
2021-11-26 23:42:22 +01:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : OnCompleted
2022-03-09 16:13:05 +01:00
path : ../TinyLife/Actions/Handlers/MultiActionHandler.cs
2023-03-30 18:07:55 +02:00
startLine : 128
2021-10-14 20:30:40 +02:00
assemblies :
- Tiny Life
2022-01-01 17:06:03 +01:00
namespace : TinyLife.Actions.Handlers
summary : "\nCalls this underlying <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Actions\" data-throw-if-not-resolved=\"false\"></xref>' currently executing action's <xref href=\"TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)\" data-throw-if-not-resolved=\"false\"></xref> method.\nThis should be called for any completion type that the action that uses this underlying action experiences, even <xref href=\"TinyLife.Actions.CompletionType.Canceled\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Actions.CompletionType.Failed\" data-throw-if-not-resolved=\"false\"></xref>.\nIf the underlying <xref href=\"TinyLife.Actions.Handlers.MultiActionHandler.Actions\" data-throw-if-not-resolved=\"false\"></xref> are null or already completed, this method has no effect.\n"
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public bool OnCompleted(CompletionType type)
parameters :
- id : type
type : TinyLife.Actions.CompletionType
description : The completion type
return :
type : System.Boolean
2022-01-01 17:06:03 +01:00
description : Whether the completion type was consumed by this multi action handler
2021-10-14 20:30:40 +02:00
content.vb : Public Function OnCompleted(type As CompletionType) As Boolean
2022-01-01 17:06:03 +01:00
overload : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted*
2021-10-14 20:30:40 +02:00
references :
- uid : TinyLife.Actions.MultiAction
commentId : T:TinyLife.Actions.MultiAction
parent : TinyLife.Actions
name : MultiAction
nameWithType : MultiAction
fullName : TinyLife.Actions.MultiAction
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
name : Update(GameTime, TimeSpan, float)
nameWithType : MultiActionHandler.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb : MultiActionHandler.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
spec.csharp :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name : Update
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name : Update
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
2023-03-30 18:07:55 +02:00
name : Validate(Action, Person)
nameWithType : MultiActionHandler.Validate(Action, Person)
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action, TinyLife.Objects.Person)
spec.csharp :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
name : Validate
- name : (
- uid : TinyLife.Actions.Action
name : Action
- name : ','
- name : " "
- uid : TinyLife.Objects.Person
name : Person
- name : )
spec.vb :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Validate(TinyLife.Actions.Action,TinyLife.Objects.Person)
name : Validate
- name : (
- uid : TinyLife.Actions.Action
name : Action
- name : ','
- name : " "
- uid : TinyLife.Objects.Person
name : Person
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
2023-03-30 18:07:55 +02:00
name : OnCompleted(CompletionType)
nameWithType : MultiActionHandler.OnCompleted(CompletionType)
fullName : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
spec.vb :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers
commentId : N : TinyLife.Actions.Handlers
name : TinyLife.Actions.Handlers
nameWithType : TinyLife.Actions.Handlers
fullName : TinyLife.Actions.Handlers
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
- name : .
- uid : TinyLife.Actions.Handlers
name : Handlers
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
- name : .
- uid : TinyLife.Actions.Handlers
name : Handlers
2021-10-14 20:30:40 +02:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2021-10-14 20:30:40 +02:00
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name : Equals(object)
nameWithType : object.Equals(object)
fullName : object.Equals(object)
nameWithType.vb : Object.Equals(Object)
fullName.vb : Object.Equals(Object)
name.vb : Equals(Object)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name : Equals(object, object)
nameWithType : object.Equals(object, object)
fullName : object.Equals(object, object)
nameWithType.vb : Object.Equals(Object, Object)
fullName.vb : Object.Equals(Object, Object)
name.vb : Equals(Object, Object)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name : ReferenceEquals(object, object)
nameWithType : object.ReferenceEquals(object, object)
fullName : object.ReferenceEquals(object, object)
nameWithType.vb : Object.ReferenceEquals(Object, Object)
fullName.vb : Object.ReferenceEquals(Object, Object)
name.vb : ReferenceEquals(Object, Object)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
- name : (
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.TinyLife.Utilities.Extensions.JsonCopy``1
2021-10-14 20:30:40 +02:00
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy<MultiActionHandler>(MultiActionHandler)
nameWithType : Extensions.JsonCopy<MultiActionHandler>(MultiActionHandler)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Handlers.MultiActionHandler>(TinyLife.Actions.Handlers.MultiActionHandler)
nameWithType.vb : Extensions.JsonCopy(Of MultiActionHandler)(MultiActionHandler)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Handlers.MultiActionHandler)(TinyLife.Actions.Handlers.MultiActionHandler)
name.vb : JsonCopy(Of MultiActionHandler)(MultiActionHandler)
2021-10-14 20:30:40 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Handlers.MultiActionHandler)
name : JsonCopy
- name : <
- uid : TinyLife.Actions.Handlers.MultiActionHandler
name : MultiActionHandler
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler
name : MultiActionHandler
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Handlers.MultiActionHandler)
name : JsonCopy
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Actions.Handlers.MultiActionHandler
name : MultiActionHandler
- name : )
- name : (
- uid : TinyLife.Actions.Handlers.MultiActionHandler
name : MultiActionHandler
2021-10-14 20:30:40 +02:00
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
2021-10-14 20:30:40 +02:00
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-10-14 20:30:40 +02:00
name : System
nameWithType : System
fullName : System
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
- name : <
- name : T
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Actions*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.Actions
2021-10-14 20:30:40 +02:00
name : Actions
nameWithType : MultiActionHandler.Actions
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Actions
2022-11-12 13:53:28 +01:00
- uid : System.Collections.Generic.Queue{TinyLife.Actions.Action}
commentId : T:System.Collections.Generic.Queue{TinyLife.Actions.Action}
2021-10-14 20:30:40 +02:00
parent : System.Collections.Generic
definition : System.Collections.Generic.Queue`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.queue-1
2022-11-12 13:53:28 +01:00
name : Queue<Action>
nameWithType : Queue<Action>
fullName : System.Collections.Generic.Queue<TinyLife.Actions.Action>
nameWithType.vb : Queue(Of Action)
fullName.vb : System.Collections.Generic.Queue(Of TinyLife.Actions.Action)
name.vb : Queue(Of Action)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Collections.Generic.Queue`1
name : Queue
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.queue-1
2021-10-14 20:30:40 +02:00
- name : <
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action
name : Action
2021-10-14 20:30:40 +02:00
- name : '>'
spec.vb :
- uid : System.Collections.Generic.Queue`1
name : Queue
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.queue-1
- name : (
- name : Of
- name : " "
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action
name : Action
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Collections.Generic.Queue`1
commentId : T:System.Collections.Generic.Queue`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.queue-1
2021-10-14 20:30:40 +02:00
name : Queue<T>
nameWithType : Queue<T>
fullName : System.Collections.Generic.Queue<T>
nameWithType.vb : Queue(Of T)
fullName.vb : System.Collections.Generic.Queue(Of T)
name.vb : Queue(Of T)
spec.csharp :
- uid : System.Collections.Generic.Queue`1
name : Queue
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.queue-1
2021-10-14 20:30:40 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.Queue`1
name : Queue
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.queue-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- name : T
- name : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-10-14 20:30:40 +02:00
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Current*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.Current
name : Current
nameWithType : MultiActionHandler.Current
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Current
- uid : TinyLife.Actions.Action
commentId : T:TinyLife.Actions.Action
parent : TinyLife.Actions
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
2022-05-24 13:36:05 +02:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler
commentId : T:TinyLife.Actions.Handlers.MultiActionHandler
parent : TinyLife.Actions.Handlers
name : MultiActionHandler
nameWithType : MultiActionHandler
fullName : TinyLife.Actions.Handlers.MultiActionHandler
- uid : TinyLife.Actions.Handlers.MultiActionHandler.#ctor*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.#ctor
name : MultiActionHandler
nameWithType : MultiActionHandler.MultiActionHandler
fullName : TinyLife.Actions.Handlers.MultiActionHandler.MultiActionHandler
2023-03-30 18:07:55 +02:00
nameWithType.vb : MultiActionHandler.New
fullName.vb : TinyLife.Actions.Handlers.MultiActionHandler.New
name.vb : New
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType.Failed
commentId : F:TinyLife.Actions.CompletionType.Failed
2023-03-30 18:07:55 +02:00
name : Failed
nameWithType : CompletionType.Failed
fullName : TinyLife.Actions.CompletionType.Failed
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
commentId : M:TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
2023-03-30 18:07:55 +02:00
name : IsCompleted()
nameWithType : MultiActionHandler.IsCompleted()
fullName : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted()
spec.csharp :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
name : IsCompleted
- name : (
- name : )
spec.vb :
- uid : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
name : IsCompleted
- name : (
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType.Completed
commentId : F:TinyLife.Actions.CompletionType.Completed
2023-03-30 18:07:55 +02:00
name : Completed
nameWithType : CompletionType.Completed
fullName : TinyLife.Actions.CompletionType.Completed
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action.StartedAutomatically
commentId : P:TinyLife.Actions.Action.StartedAutomatically
parent : TinyLife.Actions.Action
2022-01-01 17:06:03 +01:00
name : StartedAutomatically
2022-11-12 13:53:28 +01:00
nameWithType : Action.StartedAutomatically
fullName : TinyLife.Actions.Action.StartedAutomatically
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Initialize*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.Initialize
2021-10-14 20:30:40 +02:00
name : Initialize
nameWithType : MultiActionHandler.Initialize
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Initialize
2023-03-30 18:07:55 +02:00
- uid : System.Collections.Generic.ICollection{TinyLife.Actions.Action}
commentId : T:System.Collections.Generic.ICollection{TinyLife.Actions.Action}
2021-10-14 20:30:40 +02:00
parent : System.Collections.Generic
2023-03-30 18:07:55 +02:00
definition : System.Collections.Generic.ICollection`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name : ICollection<Action>
nameWithType : ICollection<Action>
fullName : System.Collections.Generic.ICollection<TinyLife.Actions.Action>
nameWithType.vb : ICollection(Of Action)
fullName.vb : System.Collections.Generic.ICollection(Of TinyLife.Actions.Action)
name.vb : ICollection(Of Action)
2021-10-14 20:30:40 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : System.Collections.Generic.ICollection`1
name : ICollection
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
2021-10-14 20:30:40 +02:00
- name : <
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action
name : Action
2021-10-14 20:30:40 +02:00
- name : '>'
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : System.Collections.Generic.ICollection`1
name : ICollection
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : (
- name : Of
- name : " "
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action
name : Action
2021-10-14 20:30:40 +02:00
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.CompletionType
commentId : T:TinyLife.Actions.CompletionType
parent : TinyLife.Actions
name : CompletionType
nameWithType : CompletionType
fullName : TinyLife.Actions.CompletionType
2023-03-30 18:07:55 +02:00
- uid : System.Collections.Generic.ICollection`1
commentId : T:System.Collections.Generic.ICollection`1
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name : ICollection<T>
nameWithType : ICollection<T>
fullName : System.Collections.Generic.ICollection<T>
nameWithType.vb : ICollection(Of T)
fullName.vb : System.Collections.Generic.ICollection(Of T)
name.vb : ICollection(Of T)
2021-10-14 20:30:40 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : System.Collections.Generic.ICollection`1
name : ICollection
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
2021-10-14 20:30:40 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : System.Collections.Generic.ICollection`1
name : ICollection
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- name : T
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Actions
commentId : P:TinyLife.Actions.Handlers.MultiActionHandler.Actions
2023-03-30 18:07:55 +02:00
name : Actions
nameWithType : MultiActionHandler.Actions
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Actions
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Actions.Action
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
name : Update(GameTime, TimeSpan, float)
nameWithType : Action.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb : Action.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
2021-10-14 20:30:40 +02:00
spec.csharp :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-10-14 20:30:40 +02:00
name : Update
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-10-14 20:30:40 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2021-11-26 23:42:22 +01:00
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2021-11-26 23:42:22 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2022-09-05 14:19:42 +02:00
- uid : TinyLife.Actions.Action.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
2021-10-14 20:30:40 +02:00
name : Update
- name : (
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
2021-10-14 20:30:40 +02:00
name : GameTime
isExternal : true
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
2021-11-26 23:42:22 +01:00
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
2021-10-14 20:30:40 +02:00
- name : )
2021-11-26 23:42:22 +01:00
- uid : TinyLife.GameImpl.Speed
commentId : P:TinyLife.GameImpl.Speed
2023-03-30 18:07:55 +02:00
name : Speed
nameWithType : GameImpl.Speed
fullName : TinyLife.GameImpl.Speed
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Update*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.Update
2021-10-14 20:30:40 +02:00
name : Update
nameWithType : MultiActionHandler.Update
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Update
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework.GameTime
commentId : T:Microsoft.Xna.Framework.GameTime
parent : Microsoft.Xna.Framework
2021-10-14 20:30:40 +02:00
isExternal : true
name : GameTime
nameWithType : GameTime
2022-09-05 14:19:42 +02:00
fullName : Microsoft.Xna.Framework.GameTime
2021-10-14 20:30:40 +02:00
- uid : System.TimeSpan
commentId : T:System.TimeSpan
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.timespan
2021-10-14 20:30:40 +02:00
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
2021-11-26 23:42:22 +01:00
- uid : System.Single
commentId : T:System.Single
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : float
nameWithType : float
fullName : float
nameWithType.vb : Single
fullName.vb : Single
name.vb : Single
2022-09-05 14:19:42 +02:00
- uid : Microsoft.Xna.Framework
commentId : N : Microsoft.Xna.Framework
isExternal : true
name : Microsoft.Xna.Framework
nameWithType : Microsoft.Xna.Framework
fullName : Microsoft.Xna.Framework
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.Action.Validate(TinyLife.Objects.Person)
commentId : M:TinyLife.Actions.Action.Validate(TinyLife.Objects.Person)
parent : TinyLife.Actions.Action
name : Validate(Person)
nameWithType : Action.Validate(Person)
fullName : TinyLife.Actions.Action.Validate(TinyLife.Objects.Person)
spec.csharp :
- uid : TinyLife.Actions.Action.Validate(TinyLife.Objects.Person)
name : Validate
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : )
spec.vb :
- uid : TinyLife.Actions.Action.Validate(TinyLife.Objects.Person)
name : Validate
- name : (
- uid : TinyLife.Objects.Person
name : Person
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.Validate*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.Validate
2021-10-14 20:30:40 +02:00
name : Validate
nameWithType : MultiActionHandler.Validate
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.Validate
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects.Person
commentId : T:TinyLife.Objects.Person
parent : TinyLife.Objects
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
2023-03-30 18:07:55 +02:00
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action.IsCompleted
commentId : M:TinyLife.Actions.Action.IsCompleted
parent : TinyLife.Actions.Action
2021-10-14 20:30:40 +02:00
name : IsCompleted()
2022-11-12 13:53:28 +01:00
nameWithType : Action.IsCompleted()
fullName : TinyLife.Actions.Action.IsCompleted()
2021-10-14 20:30:40 +02:00
spec.csharp :
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action.IsCompleted
2021-10-14 20:30:40 +02:00
name : IsCompleted
- name : (
- name : )
spec.vb :
2022-11-12 13:53:28 +01:00
- uid : TinyLife.Actions.Action.IsCompleted
2021-10-14 20:30:40 +02:00
name : IsCompleted
- name : (
- name : )
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
2021-10-14 20:30:40 +02:00
name : IsCompleted
nameWithType : MultiActionHandler.IsCompleted
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.IsCompleted
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
parent : TinyLife.Actions.Action
name : OnCompleted(CompletionType)
nameWithType : Action.OnCompleted(CompletionType)
fullName : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
spec.vb :
- uid : TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
- uid : TinyLife.Actions.CompletionType.Canceled
commentId : F:TinyLife.Actions.CompletionType.Canceled
2023-03-30 18:07:55 +02:00
name : Canceled
nameWithType : CompletionType.Canceled
fullName : TinyLife.Actions.CompletionType.Canceled
2022-01-01 17:06:03 +01:00
- uid : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted*
commentId : Overload:TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted
2021-10-14 20:30:40 +02:00
name : OnCompleted
nameWithType : MultiActionHandler.OnCompleted
2022-01-01 17:06:03 +01:00
fullName : TinyLife.Actions.Handlers.MultiActionHandler.OnCompleted