class TranscompileTask
- TranscompileTask
- BaseModel
- Avram::Model
- Reference
- Object
Overview
Class storing information about regarding transcompilation tasks.
input_code is the user provided code. output_code is the transpiled code. completed is the status of completion. priority is the priority regarding if the request came from a user or guest. inp_lang is the language of the provided code. outp_lang is the target language of the transcompilation.
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/transcompile_task.crConstant Summary
-
ASSOCIATIONS =
[] of Nil
-
Class storing information about regarding transcompilation tasks.
input_code is the user provided code. output_code is the transpiled code. completed is the status of completion. priority is the priority regarding if the request came from a user or guest. inp_lang is the language of the provided code. outp_lang is the target language of the transcompilation.
-
COLUMNS =
[{name: id, type: Int64, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: input_code, type: String, nilable: false, autogenerated: false, value: "", serialized: false}, {name: output_code, type: String, nilable: true, autogenerated: false, value: "", serialized: false}, {name: completed, type: Bool, nilable: false, autogenerated: false, value: false, serialized: false}, {name: priority, type: Int32, nilable: false, autogenerated: false, value: 2, serialized: false}, {name: inp_lang, type: String, nilable: false, autogenerated: false, value: "none", serialized: false}, {name: outp_lang, type: String, nilable: false, autogenerated: false, value: "none", serialized: false}] of Nil
-
Class storing information about regarding transcompilation tasks.
input_code is the user provided code. output_code is the transpiled code. completed is the status of completion. priority is the priority regarding if the request came from a user or guest. inp_lang is the language of the provided code. outp_lang is the target language of the transcompilation.
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int64
Constructors
- .new(id : Int64, created_at : Time, updated_at : Time, input_code : String, output_code : Nil | String, completed : Bool, priority : Int32, inp_lang : String, outp_lang : String)
- .new(__temp_111 : DB::ResultSet)
Class Method Summary
- .column_names : Array(Symbol)
- .columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String))
- .ensure_correct_column_mappings!
- .from_rs(__temp_111 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::TranscompileTask::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #completed : Bool
- #completed=(_completed : Bool::Lucky::ColumnType)
- #completed? : Bool
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::TranscompileTask::DeleteOperation.class
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #inp_lang : String
- #inp_lang=(_inp_lang : String::Lucky::ColumnType)
- #input_code : String
- #input_code=(_input_code : String::Lucky::ColumnType)
- #outp_lang : String
- #outp_lang=(_outp_lang : String::Lucky::ColumnType)
- #output_code : String | Nil
- #output_code=(_output_code : String::Lucky::ColumnType | Nil)
- #priority : Int32
- #priority=(_priority : Int32::Lucky::ColumnType)
- #save_operation_class : ::TranscompileTask::SaveOperation.class
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
Class methods inherited from class BaseModel
database : Avram::Database.class
database
Constructor Detail
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation